-
What will be the output of the following C code?
#include <stdio.h>
void main()
{
fun();
}
void fun()
{
printf("Interview Mania");
fun();
}
-
- Compilation Error
- "Interview Mania" is printed 1 time
- Nothing
- "Interview Mania" is printed infinite time
- None of these
Correct Option: D
"Interview Mania" is printed infinite time