Difference between while loop and do while loop?


Warning: Trying to access array offset on false in /home3/indiakep/public_html/wp-content/plugins/dw-question-answer/inc/Template.php on line 8
All QuestionsCategory: KotlinDifference between while loop and do while loop?
chetan shidling asked 5 years ago

I need short information.

1 Answers
chetan shidling answered 5 years ago

In the while loop, we first check the condition, and then the code will execute. In do while loop, first the code is executed and then condition is checked.