

MCQOPTIONS
Saved Bookmarks
1. |
Assunming, integer is 2 byte, What will be the output of the program? #include int main() { printf("%x\n", -1>>1); return 0; } |
A. | ffff |
B. | 0fff |
C. | 0 |
D. | fff0 |
Answer» B. 0fff | |