1.

Predict the output for the given snippet of code :
 int i, j = 1, k; for (i = 0; i < 3; i++) { k = j++ - ++j; Console.Write(k + " "); }

A. -4 -3 -2
B. -6 -4 -1
C. -2 -2 -2
D. -4 -4 -4
Answer» D. -4 -4 -4


Discussion

No Comment Found