What happens (behind the curtains) when this is executed?
int x = 7; x = x++;
That is, when a variable is post incremented and assigned to
It's incremented after "x = x++;". It would be 8 if you did "x = ++x;".
x = x++;
x = ++x;