0
What's the difference between do while and while
In both programs we are getting count from 1 to 7
1 ответ
+ 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..