C++ Continue Statement
C++ continue statement provides a way to instantly jump to the beginning of the loop for the next iteration. After continue statement, the control is immediately shifted to the beginning of the loop by ignoring followed statements. It is mostly used within for, while, do-while loops or switch statements. Syntax: continue statement: Flow Chart: Continue … Read more