Revision-6
Increment and Decrement Operators
The increment operator (++) is used to increase the value of a variable by 1. It can be applied to both numeric and character variables.
The decrement operator (--) is similar to the increment operator but decreases the value of a variable by 1. It follows the same pre-decrement (--) and post-decrement (--) syntax as the increment operator.
The break statement is used to immediately exit a loop, regardless of whether the loop condition is still true.
The continue statement is used to skip the current iteration of a loop and move on to the next iteration.