1.

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); }

A. 6
B. 5
C. Varies
Answer» C. Varies


Discussion

No Comment Found