1.

List and explain loop control statements in C

Answer»

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 Name

 Syntax 

forfor (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 )
whilewhile (condition)
{ statements; }where,
condition might be a>5, i<10
do whiledo { statements; }
while (condition);where,
condition might be a>5, i<10


Discussion

No Comment Found

Related InterviewSolutions