InterviewSolution
Saved Bookmarks
| 1. |
Does The continue and break statement have same effect |
|
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. |
|