InterviewSolution
Saved Bookmarks
| 1. |
_____statement is used to terminate for loop |
|
Answer» ONG>ANSWER: the ans Explanation: The break in C or C++ is a loop control statement which is used to TERMINATE the loop. As soon as the break statement is encountered from WITHIN a loop, the loop iterations stops there and control returns from the loop immediately to the FIRST statement after the loop. |
|