Let\'s say I have this:
while(a){ while(b){ if(b == 10) break; } }
Question: Will the break statement take m
A break statement will take you out of the innermost loop enclosing that break statement.
break
In the example the inner while loop.