MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include int main() { int x = 0; if (x == 1) if (x >= 0) printf("true\n"); else printf("false\n"); } |
| A. | true |
| B. | false |
| C. | Depends on the compiler |
| D. | No print statement |
| Answer» E. | |