6.4 — Increment/decrement operators, and side effects
Incrementing (adding 1 to) and decrementing (subtracting 1 from) a variable are both so common that they have their own operators. Note that there are two versions of each operator — a prefix version (where the operator comes before the operand) and a postfix version (where the operator comes after …