Q:

C Program to sort a one dimensional array in descending order

0

C Program to sort a one dimensional array in descending order

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h>
#define MAX 100
int main()
{
    int arr[MAX],n,i,j;
    int temp;
     
    printf("Enter total number of elements: ");
    scanf("%d",&n);
     
  
    printf("Enter array elements:\n");
    for(i=0;i< n;i++)
    {
        printf("Enter element %d: ",i+1);
        scanf("%d",&arr[i]);
    }
     
   
    for(i=0;i< n;i++)
    {
        for(j=i+1;j< n;j++)
        {
            if(arr[i]< arr[j])
            {
                temp    =arr[i];
                arr[i]  =arr[j];
                arr[j]  =temp;
            }
        }
    }
     
    printf("\nArray elements after sorting:\n");
    for(i=0;i< n;i++)
    {
        printf("%d\n",arr[i]);
    }
    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now