बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

Showing posts with label C Program to arrange the elements in descending order. Show all posts
Showing posts with label C Program to arrange the elements in descending order. Show all posts

C Program to arrange/sort the elements in descending order

C Program to arrange/sort the elements in descending order


 #include <stdio.h>
 int main ()
{ int number[30]; int i, j, a, n;
 printf("Enter the value of N\n");
scanf("%d", &n);
printf("Enter the numbers \n");
for (i = 0; i < n; ++i)
scanf("%d", &number[i]);

/* sorting begins ... */
for (i = 0; i < n; ++i)
{ for (j = i + 1; j < n; ++j)
{ if (number[i] < number[j])
 { a = number[i]; number[i] = number[j]; number[j] = a; } } }

 printf("The numbers arranged in descending order are given below\n");

 for (i = 0; i < n; ++i)
{ printf("%d\n", number[i]); }
return 0; }


  • c program for sorting numbers in ascending and descending order
  • c program to sort an array in ascending order using function
  • c program to arrange numbers in ascending order without using array
  • c++ program to sort an array in descending order
  • c program to sort an array in descending order using bubble sort
  • sort array in descending order in java
  • c program to sort n numbers in ascending order
  • c program to sort an array in ascending order

C Program example List