1.

Assuming a integer 2-bytes, What will be the output of the program?

#include<stdio.h> int main()
{ printf("%x n", -1<<3); return 0;
}

A. ffff
B. fff8
C. 0
D. -1
Answer» C. 0


Discussion

No Comment Found