DECREMENT Subtracts 1 from the given argument
Categoryname
DECREMENT value
value - Numeric value to be decreased by 1
This method has no refinements
DECREMENT Subtract 1 from the given argument
Instead of writing
counter: counter - 1
you can write
DECREMENT counter
This is the operator that in C is often seen in the form "i--"