1.

Assuming a 2-byte integer which of the following is the correct output for the program givenbelow?# include int main (){printf ( ”% x\n”, -1 << 3);return 0;}

A. 0 0 0 0
B. f f f f
C. f f f 8
D. 0 0 0 8
Answer» D. 0 0 0 8


Discussion

No Comment Found