There may be times in a program where a block of code needs to be executed several times sequentially. In such cases, Loops are used to execute a sequence of statements many times until the stated condition becomes false.
Two Types of Loops in C Programming.
1. Entry controlled loop:
In this type loop, the stated conditional is checked first and then the block of code is executed. It is also called a pre-checking loop.
There are two types of entry control loop:
- for loop.
- while loop.
2. Exit controlled loop:
In this type loop, the block of code is executed first and then the condition is checked. It is also called a post-checking loop.
There is only one type loop in the exit control loop.
- do-while loop.
While Loop in C
A while loop is a straight forward loop and is also an entry-control loop. It evaluates the condition before executing the block of the loop. If the condition is found to be true, only then the body of the loop is executed.
The loop continues until the condition stated found to be false.
Syntax of While Loop in C.
1 2 3 4 | while(condition) { //block of code to be executed } |
2. do-while loop in C:
do-while loop in C is just as same as while loop, only difference is that in do-while the condition is always executed after the loop as shown in syntax below.
Unlike while loop, where the body of the loop is executed only if the condition stated is true but in the do-while loop, the body of the loop is executed at least once. do-while is an exit-control loop that is it checks the condition after the first execution of the block.
Syntax of do-while Loop in C.
1 2 3 4 | do { //statements.. }while (condition); |
3. for Loop in C
In C programming, for loop is a more efficient loop structure and is an entry-control loop. The iteration continues until the stated condition becomes false.
It has three computing steps as shown in the syntax below.
- initialization: The first step is the initialization of the variable and is executed only once. And need to end with a semicolon(;).
- condition: Second is condition check, it checks for a boolean expression. If true then enter the block and if false exit the loop. And need to end with a semicolon(;).
- Increment or Decrement: The third one is increment or decrement of the variable for the next iteration. Here, we need to use the semicolon(;).
Syntax of for loop in C
1 2 3 4 | for(initialization; condition; Increment or Decrement) { // Statements } |
The Infinite Loop
As the name suggests, the infinite loop is a forever executing loop. The infinite loop repeats indefinitely and never terminates. It means the condition never turns to false. It is also known as an indefinite loop or an endless loop.
We can use one of the Loops in C to turn it into infinite loop.
infinite ‘for’ loop
1 2 3 4 | for(; ;) { //body of the loop } |
Example:
1 2 3 4 5 6 7 8 9 10 11 12 | #include <stdio.h> int main () { //condition for infinite for( ; ; ) { printf("INFINITE LOOP.\n"); } return 0; } |
If the above program is executed then we will get infinite printf statement. The compiler assume the condition to be true if the condition is absent in the loop.
NOTE: You can terminate an infinite loop by pressing Ctrl + C keys
We can also create infinite while loop by defining the condition as shown below.
1 2 3 4 | while(1) { //body of the loop } |
infinite do-while loop
1 2 3 4 | do { //body of the loop }while(1); |