C – Loops4 min read

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.

Loops in C programming
Loops in C Programming

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.

While Loop in C

Syntax of While Loop in C.


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.

do-while loop in C

Syntax of do-while Loop in C.


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(;).
for loop in C

Syntax of for loop in C


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

Example:

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.

infinite do-while loop


MORE

C Program to search an element in an array using Pointers

A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array …

C Program to find the sum of the digits of a number using recursion function

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation: Function Definition: sumDigits(int n) This function calculates …

C program to find factorial of a number using Ternary operator with Recursion

Recursion refers to the function calling itself directly or in a cycle. Before we begin, you should have the knowledge of following in C Programming: …

C Program to Add Two Numbers Using Call by Reference

The program takes the two numbers from the user and passes the reference to the function where the sum is calculated. You may go through …

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …