+ 1
What is a loop what mean by loop
How is work đđ
5 Respostas
+ 2
Loop is a process that doesn't ends. Means when a process start and go to the end it will again will start, then again go to the end and so on.... infinitely.
+ 2
Basically, loop is a sequence of statements that are excecuted until the desired condition is reached
+ 1
Loop is like a function that goes over and over again until some condition not vaild.
+ 1
Thanks you đđ
0
loop from the word itself , continuously executing the specific line of codes until the condition is false. Iteration , example you need to display 1 to 100 instead of writing it manually 1 from 100 you can use looping .
for(int i = 1;i <= 100;i++) display i