Diffrent between while and do while statement ?
Answers
Answered by
4
Answer:
Do / While VS While is a matter of when the condition is checked...
While loop
A while loop checks the condition, then executes the loop. ...
For example, if the counterTwo variable was 10 or greater, then
Do-while loop
do/while loop would execute once, while your normal while loop would not execute the loop....
hope its helpful
Similar questions