A break statement runs inside the inner loop of two nested for loops. Which control-flow result follows?
Explanation
Break transfers control out of the closest enclosing loop, so the outer loop can continue with its own next pass. It neither exits every surrounding loop nor terminates the whole program by itself.