Structure of some Loop used in c programming: for loop: for(initialization, condition, increment/decrement) { body of the loop; } While loop: initialization; while(condition) { body of the loop; } increment/decrement; Do...while loop: initialization; do{ body of the loop; }while(condition);