Saturday, December 19, 2024

Difference Between for-loop & While-loop


Difference Between for-loop & While-loop



For-Loop

While-Loop
Entry-Controlled Loop
Entry-Controlled Loop
Loop Condition has to be initially
TRUE for body to be executed

Loop Condition has to be initially
TRUE for body to be executed

Combines initialization,Condition,Update
Statements
Initialization,Condition,Update
Statements are to be written Seperately

Syntax :
  for(exp1;exp2;exp3)

Syntax :
          exp1;
          while(exp2)
          {
           statement...
           statement...
           exp3
          } 






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