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