What is the output of this C code?
void main() { int a = -5; int k = (a++, ++a); printf("%d\n", k); }
Answer: D
No answer description available for this question.