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

Interview Mania



Your comments will be displayed only after manual approval.