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

  1. Infinite loop
  2. Hello World is printed 65535 times
  3. Error: Calling main() function is not allowed
  4. Error: Stack overflow
  5. None of these
Change Mode