| Action |
The decrement operator subtracts the numeric value 1 from the value of identifier. In the first case, where the decrement operator appears before identifier, the value of the decrement expression is the value of identifier after it is decremented. That
is, the decrement operation takes place first, and the result is used as the value of the expression. In the second case, where the decrement operator appears after identifier, the value of the decrement expression is the value of identifier before it is
decremented; the decrement operation takes place after the expression's value has been determined.
|