Concept Flow - For loop
Initialize i=0
Check: i < 5?
No→EXIT
Yes
Execute body
Update: i = i+1
↩Back to Check
The for loop starts by setting a variable, then checks a condition. If true, it runs the loop body, updates the variable, and repeats. If false, it stops.