There are different kinds of loops are used in C: Pre-test Loops: ——————————————- //while Loop while (c < 10) c++; //for Loop for (c =...