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