Computer Science, asked by kanhaiyaray74271, 4 months ago

Statement terminates the loop

Answers

Answered by sangeetabhanwar
0

Answer:

The break statement exits a for or while loop completely. To skip the rest of the instructions in the loop and begin the next iteration, use a continue statement.

break is not defined outside a for or while loop. To exit a function, use return .

Similar questions