Programming in C
Casual Mode - Take your time!
1 / 5
Correct
0
Incorrect
0
Score
0%
Multiple Choice
What will be the output of the given program?
int main()
{
printf(Hello World\\n);
main();
return 0;
}
- Infinite loop
- Hello World is printed 65535 times
- Error: Calling main() function is not allowed
- Error: Stack overflow
- None of these