An unlabeled break executes inside the inner loop of two nested loops. What is its immediate control-flow effect?
Explanation
An unlabeled break exits the nearest enclosing loop, which is the inner loop in this scenario. It does not merely skip one iteration, and it does not exit every enclosing loop unless a valid label explicitly targets another statement.