Computer Science, asked by naikshivani621, 3 months ago

write a program in c to display numbers from 10 to 21 using while loop​

Answers

Answered by purnapushkalam1991
0

Explanation:

#include<stdio.h>

#include<conio.h>

void main()

{

int i=10;

while(i<=21)

{

printf("%d\n", i);

i++;

}

getch() ;

}

Similar questions