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