-
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");
}
}
-
- Compilation Error
- Interview Mania
- Runtime Error
- Depends on Compiler
- None of these
Correct Option: B
Compilation Error
In function `n':
main.c:(.text+0xa): undefined reference to `m'
collect2: error: ld returned 1 exit status