Computer Science, asked by rteja9005, 1 year ago

Write a program to print first 100 natural number in reverse order

Answers

Answered by ahanaguha2018
1

Hi, may be, this will help you.....


#include<iostream.h>

#include<conio.h>

void main ()

{

clrscr ();

int a;

for(a=100;a>=1;a=a-1)

{

cout<<a<<" ";

}

getch ();

}

Similar questions