Help in for, while and do-while loop

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #16
    Originally posted by Synapse
    thanx sir...but im still a little confuse how the while or do-while loop works.
    can somebody explain it to me pls...:(
    while loop
    The code in the loop is executed as long as the condition of the while loop is true.

    do while
    The code in the body of the loop is executed until the condition of the loop is false.

    Comment

    Working...