INCREMENT AND DECREMENT OPERATORS

Used to increase or decrease the value of a variable by 1.

 

int count = 0;

count++;  // Increment by 1

count--;  // Decrement by 1