1.

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

A. Compilation Error
B. Interview Mania
C. Runtime Error
D. Depends on Compiler
E. None of these
Answer» C. Runtime Error


Discussion

No Comment Found

Related MCQs