MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> int main() { int k = 0; do { k++; if (k == 2) continue; printf("Interview"); } while (k < 2); printf(" Mania"); } |
| A. | Interview Mania |
| B. | Interview |
| C. | Mania |
| D. | Compilation Error |
| E. | None of these |
| Answer» B. Interview | |