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); }
Answer: A
No answer description available for this question.