Home »
C programs »
C looping programs
C program to print numbers from 1 to 10 using while loop
This is an example of while loop in C programming language - In this C program, we are going to print numbers from 1 to 10 using while loop.
Submitted by IncludeHelp, on March 07, 2018
Using while loop, in this C program we are going to print the numbers from 1 to 10.
To print the numbers from 1 to 10,
- We will declare a variable for loop counter (number).
- We will check the condition whether loop counter is less than or equal to 10, if condition is true numbers will be printed.
- If condition is false – loop will be terminated.
Program to print numbers from 1 to 10 using while loop in C
#include <stdio.h>
int main()
{
//loop counter declaration
int number;
//assign initial value
//from where we want to print the numbers
number =1;
//print statement
printf("Numbers from 1 to 10: \n");
//while loop, that will print numbers
//from 1 to 10
while(number<=10)
{
//printing the numbers
printf("%d ",number);
//increasing loop counter by 1
number++;
}
return 0;
}
Output
Numbers from 1 to 10:
1 2 3 4 5 6 7 8 9 10
C Looping Programs »