1.

For the following statement find the values generated for p and q? int p = 0, q = 1; p = q++; p = ++q; p = q--; p = --q; Value of p & q are

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


Discussion

No Comment Found