Now back to Operators

C++ provides operators that can be used to perform an action on one, two, or three operands.

An operator that operates on one operand is called a unary operator.

An operator that operates on two operands is called a binary operator.

An operator that operates on three operands is called a ternary operator.

(I believe that there is only one ternary operator in C++.)