0
955views
What is Difference between While and Do-while Loops
1 Answer
written 6.0 years ago by |
While Loop | Do...While Loop |
---|---|
Entry-Controlled Loop | Exit-Controlled Loop |
Loop Condition has to be initially TRUE for body to be executed | Loop body will be executed at-least once |
Initialization,Condition, Update Statements are to be written Separately | Initialization,Condition, Update Statements are to be written Separately |
Syntax : | Syntax : |
while(condition){ | do{ |
statement... | statement... |
statement... | statement... |
} | } while(condition); |