Concept Flow - Iterating over strings
Start with string
Set index = 0
Check: index < length of string?
No→EXIT
Yes
Access character at index
Use character (e.g., print)
Increase index by 1
↩Back to Check
This flow shows how we start at the first character of a string and move through each character one by one until we reach the end.