Variable Increment and Decrement Operators: ++, — – Basic Elements, Primitive Data Types, and Operators
2.10 Variable Increment and Decrement Operators: ++, — Variable increment (++) and decrement (–) operators come in two flavors: prefix and postfix. These unary operators have the side effect of changing the value of the arithmetic operand, which must evaluate to a variable. Depending on the operator used, the variable is either incremented by 1 … Read more