Friday, November 8, 2019

Difference between 'While' loop and 'Do While' loop with illustrative code

Many of us don't find the difference between the While and Do While loop. The main difference is Do While loop executes the content of the loop once before checking the condition of the While.
On the other hand, a While loop checks the condition before executing the content. Hope the below code will give you a better understanding.
Thank you

No comments:

Post a Comment

Featured Post

Comparison of Sorting Algorithms at a Glance

I have compiled a comparison of major sorting algorithms. Hope, this will help in your upcoming interview.