which statement terminates the loop
Answers
Answered by
1
Answer:
break statement
Loop Control Statements
Sr.No. Control Statement & Description
1 break statement Terminates the loop statement and transfers execution to the statement immediately following the loop.
2 continue statement Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating.
Answered by
4
Loop Control Statements
Sr.No. Control Statement & Description
1 break statement Terminates the loop statement and transfers execution to the statement immediately following the loop.
2 continue statement Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating
Similar questions