0

whats the difference between while abd do while

How we decide which to use under what circumstances?

19th Aug 2017, 3:28 AM
Huitian Diao
Huitian Diao - avatar
3 Respostas
+ 3
do while loops will always run atleast once.
19th Aug 2017, 3:30 AM
Rrestoring faith
Rrestoring faith - avatar
+ 3
A while loop will check the condition before running the code, and a do-while loop will check the statement after running the code; meaning that no matter what, the code for a do-while loop will always run at least once.
19th Aug 2017, 3:31 AM
Keto Z
Keto Z - avatar
+ 1
While and do while loop is smillar, except that do while loop is guaranteed to be executed at least 1 time, even when condition on a first time is false.
19th Aug 2017, 8:24 AM
SomeCoder
SomeCoder - avatar