โช 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;
}