A
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];
};
{
float x;
int y;
char z[10];
};
- Correct Answer - Option(C)
- Views: 5
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.