Concept Flow - String Traversal and Character Access
Start at index = 0
Check: index < string length?
No→EXIT
Yes
Access character at index
Process character (e.g., print)
Increment index by 1
↩Back to Check
This flow shows how we start from the first character of a string, check if we are still inside the string, access and process the character, then move to the next one until we reach the end.
