Write a program to print first 100 natural number in reverse order
Answers
Answered by
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