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

"Interview Mania" is printed infinite time



Your comments will be displayed only after manual approval.