1.

Consider the following C declarationstruct {short s[5];union {float y;long z;}u;}t;Assume that objects of type short, float and long occupy 2 bytes, 4 bytes and 8 bytes, respectively. The memory requirement for variable t, ignoring alignment considerations, is

A. 22 bytes
B. 18 bytes
C. 14 bytes
D. 10 bytes
Answer» C. 14 bytes


Discussion

No Comment Found