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 statement: In the for loop, continue statement skips the test condition and increment value of … Read more