Revision-6

Increment and Decrement Operators 


While Loop

Break and Continue

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.