×

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

Segmentation Fault in C

Segmentation Fault in C In the C programming language, segmentation fault or segmentation violation or core dump is a condition that the hardware component raises to protect the memory by indicating...

4 minutes read.

getch() function in C

getch() is a pre-define or built-in function present in the conio.h library. It returns the given character immediately without waiting for the enter key to be entered. By using getch()...

3 minutes read.

Runtime vs compile time in C

In the C programming language, the often used terms in every step consist of compile time and runtime. The compile time is referred to the source code that will be...

4 minutes read.

How to return a Pointer from a Function in C?

In the C programming language, pointers are variables that hold the address memory location of another variable. We could also input pointers to a function and return pointers from a...

3 minutes read.

FIFO Example in the C Language

FIFO is an acronym that means "First In, First Out." It is a data structure handling method in which the first element is handled first, and the last element is...

3 minutes read.

How to include graphics.h in C?

How to include graphics.h in code blocks? Graphics .h is a header that allows drawing lines, rectangles, ovals, arcs, polygons, pictures, and strings on a graphical window by giving access to...

6 minutes read.

Find Day from Day in C Without using function

Introduction: In the given article, I find daily in C without using functions. It takes 365 days for the earth to revolve around the sun. It will be close to...

3 minutes read.

Range of int in C

In this session we know about the rage of the int in C language with the suitable examples and the programs. Firstly, we can learn the range of int: The int is...

3 minutes read.

Builtin functions of GCC compiler

Certain built-in functions are present in the GCC compiler. These features are as follows: Function_ built in_popcount (x) The number of 1s in data of the integer type can be counted using...

3 minutes read.

Formatted Input and output function in C

Formatted I/O functions display multiple outputs to the user by taking various inputs. All data types like int, float, char and double are supported by the formatted I/O function. In...

4 minutes read.

Floyd’s triangle in C

Floyd’s triangle in C Floyd’s triangle is named after a person Robert Floyd. It is a right-angled triangle that is of natural numbers starting from 1 and consecutively selects the upcoming...

4 minutes read.

Garbage in C

Garbage in C The C programming language is a perfect fit for embedded systems as it provides low level control, structured programming, and portability. On the contrary, it does not provide...

3 minutes read.

Addition of Matrix in C

The mathematical operation of includingor greater matrices is called the addition of matrices. A matrix is a square series of numbers, symbols, words, letters, and different things. In this article,...

3 minutes read.

Actual and Formal Parameters

Any variable declared within the parenthesis is referred to as the parameters during the function declaration. Parameters tell the function about the argument datatype, their order, and the number of...

5 minutes read.

Diffie-Hellman Algorithm in C

Background: A method of public-key encryption known as elliptic curve cryptography (ECC) is based on the algebraic structure of elliptic curves over finite fields. To ensure equal security, ECC encryption requires fewer...

4 minutes read.

Ferror() in c

Ferror():  In C, the ferror() function checks assuming there is a blunder in the given stream. The ferror() function is utilized to check for the document blunder on given stream. A return...

4 minutes read.

Prime Number Program in C using for Loop

In this article, we will know about the procedure of checking whether a natural number inputted by the user is a prime number or non-prime number. Definition of the prime number A...

3 minutes read.

Ceil and Floor in C

In arithmetic, a rational number is a number that can be expressed as the quotient p/q of two integers. Where q is zero. The set of rational numbers includes all...

6 minutes read.

Associativity of Operators in C

What is an Associativity operator? Two operators with equal priority are connected by employing their association when they are present in an expression. There are two different types of associativity: left to rightright...

4 minutes read.

Hexadecimal to Binary in C

What is hexadecimal? Hexadecimal defines a sequence of numbers centered on-16, i.e., before assigning the next number to a new location, it describes a numbering scheme that includes 16 sequential numbers as basic...

2 minutes read.