Single Choice
Not Set
QWhat type of data is holded by variable u int this C code?
#include
union u_tag
{
int ival;
float fval;
char *sval;
} u;
The variable u here
ID: #2671
Union in C Language
1,732 views
Question Info
#2671Q 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
Will be large enough to hold the largest of the three types;
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic