For Loop in C

In this tutorial, we will learn about for and nested for loop in C. For loop is also known as a counter-controlled loop, it means it is used whenever we know the number of repetition. For loop has three parameter, initialisation, condition, and increment/decrement. Below syntax and several examples will explain in detail about for…

Read More »

Do-While Loop in C

Do-while loop in C is similar to while loop, it is also known as a condition-controlled loop. In the do-while loop, statements executed first, after that, the condition is tested. It means the block of the code is executed at least once, even when the condition is false. Do while loop must be terminated with…

Read More »

While Loop in C

While loops are a condition-controlled loop, means they continue repeating the statements, until some condition is met. While loop, first checks the condition, if the condition is true then execute the statements. After statement execution, again it tests the condition, if true, repeat the statements. It repeats until the boolean expression is false, if the…

Read More »

Loops in C Language

Looping in any programming language is used to repeat a block of code for a given number of times or until a specific result is obtained. Loops are also known as iteration, because of it’s repeating nature. Suppose you have to print your name several times, instead of printing multiple lines, you can use loops…

Read More »