Possible Duplicates:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
How do we explain the result of the expression (++x)+(++x)+(++x)?
Why does the following program print 10? Isn't it supposed to print 12?
int j=2;
j = j++ * ++j;
printf("%d", j);