MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> int main() { int x = 0, y = 2; if (!x && y) printf("true\n"); else printf("false\n"); } |
| A. | True |
| B. | False |
| C. | Compile time error |
| D. | Undefined behaviour |
| Answer» B. False | |