C – Loop control statements

Prev     Next C Loop control statements: 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, 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, … Continue reading C – Loop control statements