View Single Post
  #10  
Old 09-05-2007, 11:39 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by Googi View Post
News to me, but how is it different from a normal while loop?
Condition execution.

In a while loop, the condition is executed first, and the loop running depends upon the condition being true before each loop.

In a do ... while loop, the condition is checked after the loop is executed, and the loop will always run once before that condition is checked.
__________________
Skyld
Reply With Quote