Q:

C program to print numbers from 1 to 10 using while loop

0

C program to print numbers from 1 to 10 using while loop

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now