Computer Science, asked by prarthanamandal1980, 3 months ago

Does The continue and break statement have same effect​

Answers

Answered by Manjotmaan455
0

Answer:

A break statement results in the termination of the statement to which it applies ( switch , for , do , or while ). A continue statement is used to end the current loop iteration and return control to the loop statement.

Answered by baranishanmu
0

Explanation:

break statement results in the termination of the statement to which it applies ( switch , for , do , or while ). A continue statement is used to end the current loop iteration and return control to the loop statement.

Similar questions