MCQ
Single Best Answer
Not Set
QWhat will be the output of the program?
#include"stdio.h"
int main()
{
enum days {MON=-1, TUE, WED=6, THU, FRI, SAT};
printf("%d, %d, %d, %d, %d, %d\n", MON, TUE, WED, THU, FRI, SAT);
return 0;
}
ID: #2680
Union in C Language
6,924 views
Question Info
#2680Q 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
-1, 0, 6, 7, 8, 9
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic