📚 Practice Mode
Programming in C
Learn at your own pace with hints and detailed explanations
1 / 5
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