+ 2
Loop
can we make a loop in another loop?
4 Answers
+ 4
Yep! You don't have to change anything about it while making the loop, you just have to set it within the curly brackets or whatever your using to specify what's in the loop.
For example, in C++, it may look like this:
for(int x = 0;x < 7;x++){
for(int y = 0;y < 5;y++){
cout << y << x << endl;
}
}
+ 16
yes , u can make any no. of loops in 1 loop
+ 4
thanks for answers
+ 2
Yes