top of page

Continue Statement in C++

Writer's picture: The Tech PlatformThe Tech Platform

The C++ continue statement is used to continue loop. It continues the current flow of the program and skips the remaining code at specified condition. In case of inner loop, it continues only inner loop.


Syntax:

jump-statement;      
continue;     

Example:

#include <iostream> 
using namespace std;  
int main()  
{  
 for(int i=1;i<=10;i++){      
 if(i==5){      
 continue;      
            }      
            cout<<i<<"\n";      
        }        
}  


Output:

1 2 3 4 6 7 8 9 10

Sofia Sondh


The Tech Platform


0 comments

Recent Posts

See All

Comments


bottom of page