- 1
Which loop is the best For,While,Do While in the programation?
Loops "For","While","Do While"
2 Answers
+ 1
Each comes in handy
+ 1
You can't use the word *better*
It always situation dependant , ex. when you want your loop to run atleast once , then you should use do-while
while(1) is the shortest infinite loop
etc.