What is the output of this C code?
void main() { int x = 1, y = 0, z = 5; int a = x && y && z++; printf("%d", z); }
Answer: B
No answer description available for this question.