CPP Continue

CPP Continue statement is used to skip the execution of current iteration in between the loop. Continue statement controls the containing loop only, i.e, external loops will not get affected because of Continue statement in inner loop.

 

Syntax:

loop/conditions statements

{

statements;

continue;

}

 

Example:

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

Output:

1	2	3	4	6	7	8	9	10
Please follow and like us:
Content Protection by DMCA.com