In any programming language loops are used to execute a set of statements repeatedly until a particular condition is satisfied. The loop directs a program to perform a set of operations again and again until a specified condition is true. Looping statement is used when we want to execute statements until a condition is true.C contains following type of looping statement:- * The for loop * The while loop * The do-while loop * For loop:- for loop is used to execute a set of statements for a given number of times , means if we want to execute statements till a certain number of time , for loop is used. Syntax: for(start value; end value ; increment/decrement) { statement; } The for loop is commonly used when the number of iteration is known. So a for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a speci