Computer Science, asked by tanuja2006rt, 6 months ago

Differentiate between a "For Next loop" and "Do While loop" with examples, pls tell fast​

Answers

Answered by itzBrainlymaster
1

Answer:

do-while loop is similar to while loop, however there is a difference between them: In while loop, condition is evaluated first and then the statements inside loop body gets executed, on the other hand in do-while loop, statements inside do-while gets executed first and then the condition is evaluated.

Similar questions