C Programming - Old Questions
Question Answer Details
10. What will be the size of following union declaration?
union test
{
int x;
char y;
float z;
}
a) 8 bytes b) 13 bytes c) 1 byte d) 4 bytes
Answer
AI Generated Answer
AI is thinking...