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
Answer: A
No answer description available for this question.