1.

What is the output of the following statements? int i = 0; printf("%d %d", i, i++);

A. 0 1
B. 1 0
C. 0 0
D. 1 1
Answer» C. 0 0


Discussion

No Comment Found