Computer Science, asked by shrijeet60, 7 months ago

with which two looping statements can we use EXIT key word?​

Answers

Answered by silpa04
0

Answer:

break terminates the execution of a for or while loop. Statements in the loop after the break statement do not execute. In nested loops, break exits only from the loop in which it occurs. Control passes to the statement that follows the end of that loop.

Thank you

Similar questions