Could someone explain how the flow of control works with a nested for loop?
for (initialize; condition; increment)
for (initialize; condition; increment)
statement;
I know a single for loop is:
initialize --> condition --> statement --> increment--> condition -->.......