Explain the parts of operators
Assignment Operators
The equal (=) sign is used for assigning a value to another. The left hand side has to be a variable (lvalue, which excludes constants, expressions, functions etc.).
e.g.
x = 10;
y = x;
Arithmetic Operators
We can categorize the arithmetic operators as UNARY and BINARY operators.
Unary Operators
Unary operators are those, which operate on a one operand.