Concept Flow - For loops
Initialize loop variable i = start
Check: i <= end?
No→EXIT loop
Yes
Execute loop body
Update i = i + step
↩Back to Check
The loop starts by setting a variable, checks if it meets the condition, runs the code inside if yes, then updates the variable and repeats until the condition is false.