Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
As of my knowledge the precedence in the following expression is
1st j--
2nd --j and - (unary minus)
3rd - left to right
The expression:
int j=3;
printf("%d\n", - j-- - --j);
i expect it to evaluate as
1st - 3 - --j
2nd - 3 - 1
3rd - 4
however instead of -4 it prints -5
Edit: I also found some useful info here

--jwhich is prefix decrement. – Shahbaz Mar 27 '12 at 13:10-4as would then also be expected, because since this behavior is undefined, then compiler may choose to do any variation of operations, in this case doing the actual subtraction fromj(inj--) after computing--j. – Shahbaz Mar 27 '12 at 13:12