1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
fun();
}
void fun()
{
printf("Interview Mania");
fun();
}

A. Compilation Error
B. "Interview Mania" is printed 1 time
C. Nothing
D. "Interview Mania" is printed infinite time
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs