MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include int main() { if (~0 == 1) printf("yes n"); else printf("no n"); } |
| A. | yes |
| B. | no |
| C. | compile time error |
| D. | undefined |
| Answer» C. compile time error | |