MCQ
Single Best Answer
Not Set
QWhat is the output of this C code?
#include
union
{
int x;
char y;
}p;
int main()
{
p.x = 10;
printf("%d\n", sizeof(p));
}
ID: #2689
Union in C Language
596 views
Question Info
#2689Q 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: Option D
Explanation
sizeof(int)
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic