MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> int main() { int n = 1; if (n) printf("Everything is okay."); printf("Everything is not okay. n"); else printf("I have fever n"); } |
| A. | Everything is okay. |
| B. | Everything is not okay. |
| C. | I have fever. |
| D. | Compilation Error |
| E. | Runtime Error |
| Answer» E. Runtime Error | |