Single Choice
Not Set
QComment on the following union declaration?
#include
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?
ID: #2669
Union in C Language
4,608 views
Question Info
#2669Q ID
Not SetDifficulty
Union in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
a
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic