MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? 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 | |