

MCQOPTIONS
Saved Bookmarks
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 | |