✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
struct {
short s[5];
union {
float y;
long z;
}u;
} t;
Assume short = 2 bytes, float = 4 bytes, long = 8 bytes. Ignoring alignment, what is the memory requirement for t?