0

What's the difference between do while and while

In both programs we are getting count from 1 to 7

7th Aug 2019, 3:29 PM
Nagalla Harsha Vardhan
1 Odpowiedź
+ 3
Do while loop will execute the block of code written in body part and then the condition will be checked..And in While loop first the condition is checked and then the code is executed.. Do while ensures that your code will execute once even if condition is false but in while it will not execute when condition is false..
7th Aug 2019, 3:48 PM
Alaska
Alaska - avatar