difference between while and do-while loop ?
Answers
Answered by
0
Answer:
do-while loop is similar to while loop, however there is a difference betweenthem: 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-whilegets executed first and then the condition is evaluated.
Answered by
2
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.
Hope it helps you
Similar questions