Some doubts in 'for' loop

Suppose that there is a nested for loop, if there is a ‘break’ statement in the inner for loop, then will the execution of the code come out of the current for-loop or the from all for-loop?

@Tiwary725

It will only come out from the inner for loop.

Hope it helps.