Distinguish berween break and continue statements in C.

A break statement terminates the execution of the loop and the control is transferred to the statement immediately following the loop.

Continue statement is used to bypass the remainder of the current pass through a loop.

Post a Comment

0 Comments