Increment and Decrement Operators
Increment and decrement operators are used in programming languages to increase or decrease the value of a variable by 1, respectively. These operators are commonly denoted as "++" (increment) and "--" (decrement).
The increment operator (++) adds 1 to the current value of a variable. It can be used in two different ways: as a prefix or as a postfix operator.