In the following code, does the break statement break out of the if statement only or out of the for loop too?
break
if
for
I need it to b
break is to break out of any loop.