state 3 difference between while loop and do-while loop.
Answers
Answered by
4
Do while loop will be executed at least once.......but while loop will check the condition first and then it may or may not get executed depending on the condition.While: your condition is at the begin of the loop block and makes possible to never enter the loop.
Similar questions