

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