Single Choice
Not Set
QChoose the correct output for the following program.
#include
void main()
{
int a=10, b=11, c=13, d;
d = (a=c, b+=a, c=a+b+c);
printf("%d %d %d %d", d, a, b, c);
}
ID: #1200
Operators and Enums in C Language
1,155 views
Question Info
#1200Q ID
Not SetDifficulty
Operators and Enums in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
50, 13, 24, 50
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic