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  
#include
int main() {
int i=0;
i++;
if(i<=5) {
printf("Welcome");
exit(1);
main();
}
return 0;
}

A. Prints “”Welcome” 5 times
B. NULL
C. Welcome
D. Error