Single Choice
Not Set
QWhat will be the output of the program?
#include
int main()
{
int i=4, j=8;
printf("%d, %d, %d\n", i|j&j|i, i|j&&j|i, i^j);
return 0;
}
ID: #1194
Operators and Enums in C Language
1,785 views
Question Info
#1194Q 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
12, 1, 12
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic