Computer Science, asked by georaj1600, 1 year ago

Write a program to sort an array of 20 elements in descending oder

Answers

Answered by smartyjay9
0

The program output is also shown below.

* C program to accept a set of numbers and arrange them.

* in a descending order.

{

int number[30];

int i, j, a, n;

printf("Enter the value of N\n");

scanf("%d", &n);

printf("Enter the numbers \n");

Similar questions