continue Statement in C

The continue statement when encountered, transfers the control to the condition of the while loop or counter-modification statement of for loop. This means all the statements of loop body after the continue statement are skipped and the control is directly transferred to the condition of the while loop or counter-modification statement of for loop. Program … Read more

continue statement

The continue statement is used inside loops. When a continue statement is encountered inside a loop, control jumps to the beginning of the loop for next iteration, skipping the execution of statements inside the body of loop for the current iteration. Continue statement Syntax: continue; Flow diagram of continue statement