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