CLight includes the following unary operators:
++ --
++
--
Postfix increment and decrement operators
unary-operator: ++ --
unary-operator
i++; i--;
The following lines of code increase the value of the variable i by 1, then decreases it by 1.
i
Last updated 3 years ago