The do loop is similar to the while loop, except that the expression is not evaluated until after the do loop's code is executed. Therefore the code in a do loop is guaranteed to execute at least...
The for loop is especially useful for flow control when you already know how many times you need to execute the statements in the loop's block. The for loop declaration has three main parts, besides...
the for loop is basically a repitation or traversing loop means one's to write his name 100 times he use the for loopexamplefor(i=0;i<=100;i++){printf("my name is AA");}the for loop checks the...