What is the value of y after execution of the following statements?
int x = 5; int y = 4; y = x++;
Click to view the answer
B.
The postfix operator returns the value of x before incrementing x.