Q. The size of the following union, where an int occupies 4 bytes of memory is
Code:
union demo
{
float x;
int y;
char z[10];
};
β
Correct Answer: (C)
10 byte
union demo
{
float x;
int y;
char z[10];
};
You must be Logged in to update hint/solution