+ 3
difference between while and do while?
3 Answers
+ 6
while is a top tested loop whereas do while is bottom tested loop
while will do not execute if condition false
whereas do while execute once even if condition false
0
while is first check the condition the loop is false the loop is exit
do while is first print the value and chech the condition then it is false loop is terminate
0
do while executes at least once