Introduction to C / C++ Programming
Operators

Input and Output Operators

The Simple Assignment Operator

Arithmetic Operators, +, -, *, /, %

Precedence and Associativity

Abbreviated Assignment Operators

Operator Example Equivalent
X += 7;
X = X + 7
X -= 7;
X = X - 7;
X *= 7;
X = X * 7;
X /= 7;
X = X / 7;
X %= 7;
X = X % 7;

Auto Increment and Auto Decrement