0
continue statements in c++ loops
any useful description about Continue Statment
2 Antworten
+ 1
Continue statement forces the immediate next iteration of the loop therefore the statements of the loop body after the continue statements are not executed. The Loop starts with the next iteration when a continue statement is encountered in the body of a loop.
0
continue statement is use for skip the statements below the continue statement in the scope