MCQ Practice
Single Best Answer
Topic: Operators and Enums in C Language
Q
What is the output of this C code?
void main()
{
int x = 0, y = 2, z = 3;
int a = x & y | z;
printf("%d", a);
}
Subchapter
Operators and Enums in C Language
Action
Choose one option below