2
Reply

What does break and continue statements do?

Jul 13, 2006
10k
0

    break leaves a loop, continue jumps to the next iteration.

    Manoj Kumar
    December 30, 2016
    0

    Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop.

    July 13, 2006
    0