The auto-increment operator is ++ and means “increase by one unit.” If A is an int, for example, the expression ++A is equivalent to ( A = A + 1 ). Auto-increment and auto-decrement operators produce the value of the variable as a result.
Sandhya Answered question July 6, 2023
