#include<stdio.h>
#include<conio.h>
void main()
{
int a[20],i;
printf("Enter 20 Values");
for(i=0;i<19;i++)
{
scanf("%d",&a[i]);
}
printf("The Reverse orders are");
for(i=19;i>=0;i--)
{
printf("%d",a[i]);
}
getch();
}
Copyright © 2010 C Programs
Icons & Wordpress Theme by N.Design | Blogger Templates by Blog and Web
0 comments: (+add yours?)
Post a Comment