Social Sciences, asked by MANASVIchugh83, 9 months ago

Write a program to print reverse counting from 1 to 10 using while loop.​

Answers

Answered by anilsavaliya121084
0

Answer:

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; }

Similar questions