Difference Between While-loop & Do-while-loop
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 Seperately | |
Syntax : exp1; while(exp2) { statement... statement... exp3 } | Syntax : do { statement... statement... } while(condition); |

Bookmark & Share
0 comments:
Post a Comment
Your Feedback :This is Growing Site and Your Feedback is important for Us to improve the Site performance & Quality of Content.Feel Free to contact and Please Provide Name & Contact Email