Computer Science, asked by sudipsarkar2004april, 2 months ago

Difference between while and dowhile​

Answers

Answered by Disha094
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 kristoffer6268
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