
Exiting a Nested Loop
Sometimes, you need to exit a nested loop early, and the break; statement will only let you exit one level of a loop. Use a flag to indicate if the loop should be exited. bool abort = false;for(int i = 0; (i < 100) && (! abort); i++){ for(int j