C Program To Set Array elements in reverse order

#include<stdio.h>
#include<conio.h>
void main()
{
int i,a[10],n;
clrscr();
printf("enter the value of n: ");
scanf("%d",&n);

printf("\nenter the values");

for(i=0;i<n;i++)
scanf("%d",&a[i]);

printf("\nelements inserted are:\n");
for(i=0;i<n;i++)
printf("%d\n",a[i]);

printf("\nreverse order of the given number is\n");
for(i=n-1;i>=0;i--)
printf("%d\n",a[i]);
getch();
}


Bhanu Namikaze

Bhanu Namikaze is an Ethical Hacker, Security Analyst, Blogger, Web Developer and a Mechanical Engineer. He Enjoys writing articles, Blogging, Debugging Errors and Capture the Flags. Enjoy Learning; There is Nothing Like Absolute Defeat - Try and try until you Succeed.

No comments:

Post a Comment