+ 2
what is the difference between do while loop and while loop
3 Answers
+ 4
In a do while loop, the condition is checked at the end of the loop rather than at the beginning like in a while loop, which ensures the loop runs at least once.
+ 2
do-while at least runs 1 time, while just consider condition then run it
+ 1
thanks