Concept Flow - Break statement
Start Loop
Check Condition
Yes
Execute Loop Body
Is break condition met?
Yes→Exit Loop
↩Back to Check Condition
The loop starts and checks its condition. Inside the loop body, if the break condition is met, the loop exits immediately; otherwise, it continues looping.