What is the difference between while loop and do while loop. I used to think both are completely same.Then I came across following piece of code:
do {
While : your condition is at the begin of the loop block, and makes possible to never enter the loop.
Do While : your condition is at the end of the loop block, and makes obligatory to enter the loop at least one time.