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

Manjesh Ojha



Your comments will be displayed only after manual approval.