Continue Statement in C++ Language
The C++ continue statement is used to continue the loop. It continues the current flow of a program and skips the remaining code at specified condition.
C++ Continue Statement Example -
Output -
1
2
3
4
6
7
8
9
10
C++ Continue Statement with Inner Loop
C++ Continue Statement continues inner loop only if you use continue statement inside the inner loop.
Output -
1 1
1 2
1 3
2 1
2 3
3 1
3 2
3 3