TYPES OF LOOP CONTROL STATEMENTS IN C:
There are 3 types of loop control statements in C language.
They are,
- for
- while
- do-while
Syntax for each C loop control statements are given in below table with description.
Loop Name | Syntax |
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 |