In this tutorial you will learn about continue statement in C++ language .
The continue statement works similar to the break statement . Instead of forcing termination, the continue statement forces the next iteration of the loop to take place skipping any code in between.


