1.

What will be the output of the program? #include int main() { printf("%d %d\n", 32<<1, 32<<0); printf("%d %d\n", 32<<-1, 32<<-0); printf("%d %d\n", 32>>1, 32>>0); printf("%d %d\n", 32>>-1, 32>>-0); return 0; }

A. Garbage values
B. 64 320 3216 320 32
C. All zeros
D. 8 00 032 00 16
Answer» C. All zeros


Discussion

No Comment Found

Related MCQs