Increment operators (++) increase the value of a varibale and the Decrement operators (-- ) decreases the value of the variable.
As prefix and postfix:
Both the operators when uses as prefix (++var, --var), the value of Variable is increased or decreased by 1 and then it returns the value.
When used as postfix (var++, var--), the original value of the Variable is returned first then the value of variable is incremented or decremented by 1