MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include int main() { unsigned int a = 10; a = ~a; printf("%d n", a); } |
| A. | -9 |
| B. | -10 |
| C. | -11 |
| D. | 10 |
| Answer» D. 10 | |