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

  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