Concept Flow - C-style for loop
Initialize variable
Check condition
Execute body
Update variable
↩Back to Check condition
The 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.