0
1.2kviews
What is Difference between While and Do-while Loops
1 Answer
| written 7.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); |