Difference between while and dowhile
Answers
Answered by
1
the main difference between a while loop and do while loop is that while loop check condition before iteration of the loop. ... On the other hand, the do-while loop verifies the condition after the execution of the statements inside the loop.
Answered by
1
Answer:
Here, the main difference between a while loop and do while loop is that while loop check condition before iteration of the loop. On the other hand, the do-while loop verifies the condition after the execution of the statements inside the loop.
Explanation:
Similar questions