

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code? #include <stdio.h> int main() { unsigned int num = 20; num = ~num; printf("%d n", num); } |
A. | -21 |
B. | Compilation Error |
C. | 20 |
D. | Runtime Error |
E. | None of these |
Answer» B. Compilation Error | |