

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