×

Do WHILE LOOP in C Programming Examples

Before understanding the programming examples of the Do-While loop, we have to know what is Do-While loop in C. So, let's start with the definition of the Do-While loop.

What is Do-while Loop?

The Do-While loop executes the body at least one time before checking the termination condition and then executes the statements according to the termination condition.

Syntax of the do-while loop in C

do 
{
  /* main body used for the loop */
}
while (termination condition);

Initially, the body of do-while executes only one time. After that, the control executes the termination condition.

It then checks whether the termination command results in true. If yes, it will print the desired outcome on the screen, and it will continue to execute the termination condition repeatedly.

One more thing is that the execution will run multiple times until the condition become false.

As soon as the results become false after the execution of the termination command, then the loop will be automatically dismissed.

Example 01: Program to perform basic addition of various numbers until the user enters 0.

/* code for adding integers until the user assigns the value zero */
#include <stdio.h>
int main() 
{
  double number, total = 0; // variable declaration and initialization of values of                                                    variables
  do 
  {
    printf("Enter a number: "); // body of “do while” loop
    scanf("%lf", &number);     // it is executed only once
    total += number; 
  }
  while(number != 0.0); // termination condition
  printf("Sum = %.2lf",total); // command for printing output 
  return 0;
}

Output

Enter a number: 3
Enter a number: 4
Enter a number: -5
Enter a number: 6
Enter a number: 0
Sum = 8.00

Step by step explanation:

In the above code, the do-while loop is used in such a manner that it lets the user enter the numbers, and the loop will be executed as long as the user does not insert a 0 integer.

The loop in this code executes the body once without checking the termination statement, so it will execute the statement first. After that, the user entered 3, 4, -5, and then 6.

At last, the user enters 0, and the "do while" loop is terminated because the termination condition becomes false. As a result, the output (the sum of all inserted numbers) is displayed on the screen.

A few more similar examples of the "do while" loop in C are discussed below.

Example 02:  Do-While loop with increment statement:

/* this is a program to print numbers to a specific point */
#include <stdio.h>
int main() 
{
  int a;
      printf("enter the number (less than or equal to 3) to start from:\n");
      scanf("%d",&a); // assigning the value entered to a
    do //execute the task without checking the condition only once
  {
      printf("the value of a is %d\n",a);
      a++;//increment statement
  }  
    while(a<=3);//this is termination condition
  return 0;
}

Output:

enter the number (less than or equal to 3) to start from:
-3
the value of a is -3
the value of a is -2
the value of a is -1
the value of a is 0
the value of a is 1
the value of a is 2
the value of a is 3

In this example, firstly, we have declared the variable "a," and then we took the input from the user and assigned the inserted value to “a”.

The code will print the value of “a” without checking the termination condition. Then, it will increment the value of “a” and check the termination condition repeatedly.

According to the input provided by the user in the mentioned output, the value of “a” is -3, but after increment, it becomes -2, -1, 0. The value will increment until ‘a’ reaches 3. When the value of 'a' becomes 3, then the loop will be terminated because the termination condition (a<=3) becomes false.

Example 03: Do-While loop with decrement statement:

/* this is a program to print numbers to a specific point */
#include <stdio.h>
int main() 
{
  int a;
      printf("enter the number (more than or equal to 3) to start from:\n");
      scanf("%d", &a); // assigning the value entered to a
    do //execute the task without checking the condition only once
  {
      printf ("the value of a is %d\n", a);
      a--; //decrement statement
  }  
    while(a>=3); //this is termination condition
  return 0;
}

Output:

enter the number (more than or equal to 3) to start from:
9
the value of a is 9
the value of a is 8
the value of a is 7
the value of a is 6
the value of a is 5
the value of a is 4 
the value of a is 3 

In this example, firstly, we declared the variable "a", then we took the input from the user and assigned the inserted value to “a”.

The code will print the value of “a” without checking the termination condition. Then, it will decrease the value of "a" and repeatedly check the termination condition.

According to the input provided by the user in the mentioned output, the value of “a” is 9, but after decrement, it becomes 8, 7, and 6. The value will decrement until ‘a’ reaches 3. When the value of 'a' becomes 3, then the loop will be terminated because the termination condition (a>=3) becomes false.

Example 04: Program of Do-While loop:

/* this program will calculate the sum of all multiples of the table */
#include <stdio.h>
int main() 
{
  int num , sum, a=0; // Declaring variables and initialization of the value of a
      printf("enter the table you want to add:\n\n");
      scanf("%d", &num);//assigning the value of a entered by user
    do
  {
      printf("%d * %d = %d \n\n", num, a, num * a);
      a++;// increment statement
  }
    while(a<=10);// termination condition
      sum=num*55;
  {
      printf("the sum of all multiples of this table is %d\n\n", sum);
  }
    return 0;
}

Output:

enter the table you want to add:
8
8 * 0 = 0 
8 * 1 = 8
8 * 2 = 16
8 * 3 = 24
8 * 4 = 32
8 * 5 = 40
8 * 6 = 48
8 * 7 = 56
8 * 8 = 64
8 * 9 = 72
8 * 10 = 80
the sum of all multiples of this table is 440

the sum of all multiples of this table is 440

Example 05: Do-While loop with positive infinity:

/* this is a program to print numbers to an uncertain point */
#include <stdio.h>
int main() 
{
  int a;// declaring variable
      printf("enter the number (more than or equal to 3) to start from:\n");
      scanf("%d", &a); // assigning the value entered to a
    do //execute the task without checking the condition only once
  {
      printf ("the value of a is %d\n", a);
      a++; //increment statement
  }  
    while(a>=3); //this is termination condition
  return 0;
}

Output:

enter the number (more than or equal to 3) to start from:
3
the value of a is 4
the value of a is 5
the value of a is 6
the value of a is 7
the value of a is 8
the value of a is 9 
the value of a is 10………

Example 06: Do-While loop with negative infinity:

/* this is a program to print numbers to an unspecified point */
#include <stdio.h>
int main() 
{
  int a; //declaring variable
      printf("enter the number (less than or equal to 3) to start from:\n");
      scanf("%d", &a); // assigning the value entered to a
    do //execute the task once without checking the condition
  {
      printf ("the value of a is %d\n", a);
      a--; //decrement statement
  }  
    while(a<=3); //this is termination condition
  return 0;
}

Output:

enter the number (less than or equal to 3) to start from:
3
the value of a is 2
the value of a is 1
the value of a is 0
the value of a is -1
the value of a is -2
the value of a is -3
the value of a is -4…………. 



Related Topics

Inline Function in C

Inline Function in C A normal function will become an inline function when the function prototype of that function is prepended with the keyword "inline". Inline functions are the function where...

4 minutes read.

#error #pragma in C

#error, #pragma in C #error, also known as the error directive in the C language. It will not allow you to make any compilation fail and immediately issues a statement which...

4 minutes read.

Quick sort in C

Quick-sort, in the same way, like a merge sort, follows the principle of the divide and conquer algorithm. It then picks an element as pivot and partitions, and the given...

4 minutes read.

Sum of digits in C++

Sum of digits in C++ There are various ways to find the sum of the digits of a number in C++. We can use containers like arrays or other simple cases...

4 minutes read.

Modulus on Negative Numbers in C

In this tutorial, we will explore some examples of modulus on negative number. What is Modulus of Negative number? By omitting the minus sign, one can determine the modulus of a negative...

3 minutes read.

LCM of two numbers in C

LCM is a mathematical term which stands for Least Common Multiple. LCM of any two numbers is the smallest positive value(number) which is evenly divisible by the two given numbers. Consider...

4 minutes read.

Banker’s Algorithm in C

Introduction Before doing a "s-state" check to look for potential activities and deciding if allocation should be allowed to continue, the banker's algorithm, a resource allocation and deadlock avoidance algorithm, tests...

5 minutes read.

Typedef vs define in C

Typedef VS define in C Typedef In the C programming language, a keyword called typedef can be used to give a type a new name. In other words, it is used to...

5 minutes read.

#include in C

In the C programming language, #include is another way of inferring a standard, or a user defines file into the application or program. The preprocessor of the programming standard generally...

4 minutes read.

Simple hash() function in C

Introduction In this context, we briefly discuss HASH FUNCTION, HASHING or HASH TABLE in C. It is a function used to map data and mapped arbitrary sizes to the fixed-size values. The...

7 minutes read.

Derived Data Types in C

A variable in a program occupies some space in the computer's memory where some value is stored. Each variable in C has an associated data type. A value to be...

4 minutes read.

function pointer as argument in C

Pointers are considered difficult to understand for beginners but pointers can be made to work if you fiddle with them long enough. So, let’s understand this step by step. What are...

3 minutes read.

Multiplication Table in C

Displaying table up to 10 #include <stdio.h> int main() {     int num, i = 1;     printf("     Enter any Number:");     scanf("%d", &num);     printf("Multiplication table of %d: ", num);  ...

1 minute read.

C Program for Extended Euclidean algorithms

The Euclidean method simply computes the GCD (greatest common divisor) of two numbers, p and q. (Let's assume) The GCD of two integers is the greatest number that divides them both....

3 minutes read.

Ceil function in C

Introduction In the C Programming Language, the ceil function is a library function which is used to obtain the ceil value, i.e., it returns the smallest integer that is greater than...

4 minutes read.

Recursion in C

Recursion in C: In the C programming language, the concept known as recursion exists that is a technique in which a function calls itself either directly or indirectly. It allows...

4 minutes read.

Variables in C

A variable can be defined as a name allocated to a storage space that can be manipulated by our programs. Every variable in C arbitrates about the overall layout and...

5 minutes read.

Built-in functions in C

The function is a set of instructions and statements enclosed in the "{}" delimiter. In c, there are two types of functions. Pre-define functions/ Built-in functionsUser define function. Built-in functions in C:- These...

8 minutes read.

Tower of Hanoi in C

What is Tower of Hanoi? The Tower of Hanoi is a gaming problem that was created in 1883 by a French mathematician named Édouard Lucas. The Tower of Hanoi temple in...

4 minutes read.

C Program for Mean and Median of an Unsorted Array

In this tutorial, we will look at how to determine the mean and median of a given unsorted array. To determine the Mean: To get the average, mean is determined. The formula...

2 minutes read.