Do-While Loop Example Program in C
On this page (6sections)
About this program
This is an example program in loop example programs. Read the concept first: Loop Control Statements, then study the code and output below.
Definition
In C++, a do while loop, sometimes just called a do loop, is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition.
Do… While Loop Syntax:
do {
Code to execute while the condition is true
} while ( condition );
Example Program For Simple Do..While Loop In C Programming
/* Example Program For Simple Do...While Loop In C Programming Language
little drops @ thiyagaraaj.com
Coded By:THIYAGARAAJ MP */
// Header Files
#include<stdio.h>
#include<conio.h>
//Main Function
int main()
{
//Variable Declaration
int endno,counter=0;
printf("Print Numbers Up to....");
scanf("%d", &endno);
//Print counter values using do.. while
do
{
counter++;
printf("%d\n", counter);
}while ( counter < endno);
? // Wait For Output Screen
getch();
? //Main Function return Statement
return 0;
}
Sample Output:
Print Numbers Up to....13
1
2
3
4
5
6
7
8
9
10
11
12
13
Related Pages
Learn the concept first, then study the code:
- C Programs — Browse all C Programs.
- Loop Control Statements — Tutorial — for, while, do-while, break and continue.
- Simple For Loop Example Program In C Programming Language — More in loop example programs.
- Read and Print Array Numbers Using For Loop and Scanf — More in loop example programs.