1.

If an unsigned int is 2 bytes wide then, What will be the output of the program ?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ unsigned int m = 32;_x000D_ printf("%x\n", ~m);_x000D_ return 0;_x000D_ }

A. ffff
B. 0000
C. ffdf
D. ddfd
Answer» D. ddfd


Discussion

No Comment Found

Related MCQs