Computer Science, asked by rajivk7980, 1 month ago

write down the difference between do while() and while () loops?​

Answers

Answered by vijaythemaster
2

Answer:

While loop is executed only when given condition is true. Whereas, do-while loop is executed for first time irrespective of the condition. After executing while loop for first time, then condition is checked

Similar questions