Simple Sorting Descending Order in Array Example in C
On this page (4sections)
About this program
This is an example program in c array example programs. Read the concept first: C Array, then study the code and output below.
Simple Sorting Descending Order Example Program
/*##Simple Sorting Descending Order In Array*/
/*##Calculation Programs, Array Example Programs*/
#include <stdio.h>
#define ARRAY_SIZE 5
int main()
{
int numbers[ARRAY_SIZE], i ,j ,temp;
// Read Input
for (i = 0; i < ARRAY_SIZE; i++)
{
printf("Enter the Number : %d : ", (i+1));
scanf("%d", &numbers[i]);
}
// Array Sorting - Descending Order
for (i = 0; i < ARRAY_SIZE; ++i)
{
for (j = i + 1; j < ARRAY_SIZE; ++j)
{
if (numbers[i] < numbers[j])
{
temp = numbers[i];
numbers[i] = numbers[j];
numbers[j] = temp;
}
}
}
printf("Sorting Order Array: \n");
for (i = 0; i < ARRAY_SIZE; ++i)
printf("%d\n", numbers[i]);
return 0;
}
Sample Output:
Enter the Number : 1 : 34
Enter the Number : 2 : 56
Enter the Number : 3 : 12
Enter the Number : 4 : 89
Enter the Number : 5 : 37
Sorting Order Array:
89
56
37
34
12
Related Pages
Learn the concept first, then study the code:
- C Programs — Browse all C Programs.
- C Array — Concept — arrays, indexing and multidimensional arrays.
- Single Dimensional Array Example Program in C Programming — More in c array example programs.
- Sum of Array C Example Program — More in c array example programs.