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

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler by giving command as:-

$ gcc test.c

$ ./a.out

/* test.c */
#include
void fun(int);
int main(int argc) {
printf("%d ", argc);
fun(argc);
return 0;
}
void fun(int i) {
if(i!=4){
main(++i);
}
}

A. 37653
B. 1 2 3 4
C. 38048
D. 1