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

		
					

Loading

โœช Choose the correct option.

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

#include   
void fun(int*, int*);
int main() {
int i=5, j=2;
fun(&i, &j);
printf("%d, %d", i, j);
return 0;
}
void fun(int *a, int *b) {
*a = *a * *a;
*b = *b * *b;
}

A. 5,2
B. 10,4
C. 2,5
D. 25,4