Loop Statements:

Iterative / Loop

Loop control statements in C are used to perform looping operations until the given condition is true. Control comes out of the loop statements once condition becomes false.

TYPES OF LOOP CONTROL STATEMENTS IN C:

There are 3 types of loop control statements in C language. They are,
  1. for
  2. while
  3. do-while
Syntax for each C loop control statements are given in below table with description.
Loop NameSyntax
for
for (exp1; exp2; expr3)
{ statements; }
Where,
exp1 – variable initialization
( Example: i=0, j=2, k=3 )
exp2 – condition checking
( Example: i>5, j<3, k=3 )
exp3 – increment/decrement
( Example: ++i, j–, ++k )
while
while (condition)
{ statements; }
where, 
condition might be a>5, i<10
do while
do statements; }
while (condition);
where,
condition might be a>5, i<10

No comments:

Post a Comment