

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { A(); void A() { printf("Interview Mania"); } } |
A. | Interview Mania |
B. | Compilation Error |
C. | Garbage value |
D. | Runtime Error |
E. | None of these |
Answer» C. Garbage value | |