Computer Science, asked by TAQUI5045, 7 months ago

WAP to print the numbers from 20 to 1 in descending order using DO WHILE statement

Answers

Answered by teju3k8
0

Answer:

#include<stdio.h>

#include<conio.h>

void main

{

int n=20;

do

{

printf("%d ", n) ;

n=n-1;

} while ( n>1) ;

return 0;

}

Similar questions