1.

The size of the following union, where an int occupies 4 bytes of memory is

 union demo { float x; int y; char z[10]; };

A. 8 byte
B. 4 byte
C. 10 byte
D. 18 byte
Answer» D. 18 byte


Discussion

No Comment Found