0
can anyone teach what's the logic of nested for loops I seen video and I do programming I am just beginner but I don't understand the logic of nested for loops
2 Antworten
+ 1
its a loop inside another loop.
here a variable of outer loop changes its value after executing inner for loop.
0
For each iteration of the outer loop, the inner loop will iterate until its fail conditions are met.