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

		
					

Loading

โœช Choose the correct option.

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

#include 
int main(){
int i;
printf("happy new year");
for(i=1;i<=10;i++)
main();
}

A. happy new year
B. prints “happy new year” 10 times
C. compiler error
D. Recursive call to main()