8. (C) Write a program to arrange the ‘n’ numbers stored in the array in ascending and descending order

8. (C) Write a program to arrange the ‘n’ numbers stored in the array in ascending and descending order
Write a program to arrange the ‘n’ numbers stored in the array in ascending and descending order
#include <stdio.h>
int main(void)
{
int a[10], i=0, j=0, n, t;
printf ("\n Enter the no. of elements: ");
scanf ("%d", &n);
printf ("\n");
for (i = 0; i <n; i++)
{
printf ("\n Enter the %dth element: ", (i+1));
scanf ("%d", &a[i]);
}
for (j=0 ; j<(n-1) ; j++)
{
for (i=0 ; i<(n-1) ; i++)
{
if (a[i+1] < a[i])
{
t = a[i];
a[i] = a[i + 1];
a[i + 1] = t;
}
}
}
printf ("\n Ascending order: ");
for (i=0 ; i<n ; i++)
{
printf (" %d", a[i]);
}
printf ("\n Descending order: ");
for (i=n ; i>0 ; i--)
{
printf (" %d", a[i-1]);
}
return 0;
}
8. (C) Write a program to arrange the ‘n’ numbers stored in the array in ascending and descending order 8. (C) Write a program to arrange the ‘n’ numbers stored in the array in ascending and descending order Reviewed by admin on December 23, 2019 Rating: 5

No comments:

Powered by Blogger.