MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> int main() { int x = 0, y = 2; int z = ~x & y; printf("%d\n", z); } |
| A. | -1 |
| B. | 2 |
| C. | 0 |
| D. | Compile time error |
| Answer» C. 0 | |