Saved Bookmarks
| 1. |
Write a difference between break and continue statement |
|
Answer» Answer: the break statement breaks out of the loop; it FORCES termination of loop continue statement MAKES to skip the EXECUTION of the instructions PRESENT in a loop and forces the NEXT iteration to take place in the loop Explanation: |
|