break: Breaking Out of the Nearest Loop
break: Breaks out of the nearest loop (e.g., for, while).
If you want to break out of N nested loops, the notorious goto statement can be very useful, saving you from using break multiple times!
break: Breaks out of the nearest loop (e.g., for, while).
If you want to break out of N nested loops, the notorious goto statement can be very useful, saving you from using break multiple times!