1.

What will be the output of the following C code? #include void main() { int a = -5; int k = (a++, ++a); printf("%d n", k); }

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


Discussion

No Comment Found