I tried this on my gcc:
int a=1;
cout<<(--a)--;
and the output is 0; but change it to
cout<<--(a--);
results in an error (lvalue required as decrement operand). Could someone enlighten me about this?
Thanks!
|
|
Both versions of Either way, you can't modify the same object twice between sequence points, so your "working" example invokes undefind behavior. The output can be whatever the compiler feels like doing. If you're just asking out of curiosity that's fine, but if this is relevant to your actual code you might be doing something wrong. |
|||||||||
|
|
predecrement postdecrement Think of predecrement as returning a reference to |
|||||||||||
|
This is undefined behavior, as you modify the same object twice without an intervening sequence point. The compiler is not required to report when you invoke UB – it can't even detect UB in many situations. But if you turn on the right warnings (and you should look at what yours provides), it may be able to, sometimes.
Prefix decrement requires an lvalue, but postfix decrement returns an rvalue. This is an error that, unlike undefined behavior, the compiler is required to report. |
||||
|
|