InterviewSolution
Saved Bookmarks
| 1. |
Write a purpose of a continue statements. |
|
Answer» 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 |
|