MCS-011 Problem Solving and Programming

First year, Semester 1

Chapters

Newsletter

The continue Statement

Unlike break statement, which is used to jump the control out of the loop, it is sometimes required to skip some part of the loop and to continue the execution with next loop iteration. Continue statement used inside the loop helps to bypass the section of a loop and passes the control to the beginning of the loop to continue the execution with the next loop iteration. The syntax is as follows:

continue;  

Report an issue

Reporting: The continue Statement (topic)

Related Posts