InterviewSolution
Saved Bookmarks
| 1. |
What is the usage of break statement, continue statement and goto statement? |
|
Answer» Break statement: It TERMINATES the “for” loop or SWITCH statement and transfers execution following the “for” loop or switch. Continue statement: It helps the loop to omit the remainder of its BODY and RETEST before repeating. Goto statement: It transfers control to the statement |
|