What will be the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler?

#include 
int check (int, int);
int main() {
int c;
c = check(10, 20);
printf("c=%d ", c);
return 0;
}
int check(int i, int j) {
int *p, *q;
p=&i;
q=&j;
i>=45 ? return(*p): return(*q);
}

A. 10
B. 20
C. 1
D. Compiler Error