349) The declaration
union id{
char color[12];
int size;}shirt,Jeans;
denotes shirt and Jeans are variable of type id and
Answer is:
Each can represent either a 12-character color or an integer size at a time
Related C Programming MCQ with Answers
Answer is:
Union contain members of different data types which share the same storage area in memory
Answer is: