C – continue statement
In C programming, the continue statement works like a break statement, instead of terminating the loop the continue statement skips the code in between and pass it to the next iteration in the loop. continue statement Flowchart: Syntax of continue …