The below declaration



			  		

Loading

โœช Choose the correct option.

The below declaration


union id {

char color [12];

int size;

} tshirt, pant;


denotes shirt and pant are variable of type id and

A. each can have a value of color and size
B. each can represent either a 12-character color or a integer size at a time
C. shirt and pant are same as struct variables
D. variable shirt and pant cannot be used simultaneously in a statement.