Here is the code,
Code:
int i = 1;
i = i++;
At the end, i is still 1 instead of 2,why? Thanks.