1.

What will be the output of the program ? #include int main() { struct value { int bit1:1; int bit3:4; int bit4:4; }bit={1, 2, 13}; printf("%d, %d, %d\n", bit.bit1, bit.bit3, bit.bit4); return 0; }

A. 1, 2, 13
B. 1, 4, 4
C. -1, 2, -3
D. -1, -2, -13
Answer» D. -1, -2, -13


Discussion

No Comment Found