The size of the following union, where an int occupies 4 bytes of memory is
union demo { float x; int y; char z[10]; };
Answer: C
Largest size among the three structure variable is selected that is char z[10].