1.

What is the output of this C code? void main() { int a = -5; int k = (a++, ++a); printf("%d n", k); }

A. -4
B. -5
C. 4
D. -3
Answer» E.


Discussion

No Comment Found