Discussion :: C-MCQs
-
Comment on the following union declaration?
union temp
{
int a;
float b;
char c;
};
union temp s = {1,2.5,'A'}; //REF LINE
Which member of the union will be active after REF LINE?
Answer : Option A
Explanation :
None.
Be The First To Comment