1.

What is the output of this program? void main() { struct bitfields { int bits_1: 2; int bits_2: 9; int bits_3: 6; int bits_4: 1; }bit; printf("%d", sizeof(bit)); }

A. 2
B. 3
C. 4
Answer» C. 4


Discussion

No Comment Found