What is x after “x = x++”?

x = x++;

is equivalent to

int tmp = x;
x++;
x = tmp;

Leave a Comment