

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