06.02.2011, 17:45
I may have my terminology off here, but a do while loop is a post test loop, whereas a while loop is a pretest loop. That being, a do while loop will always execute at least once and then check the condition, whereas a while loop checks the condition then performs its tasks.