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