HOME

Wednesday, April 29, 2015

SORTING OF NUMBER IN DESCENDING ORDER USING SELECTION SORT METHOD IN C PROGRAM

#include<stdio.h>
#include<conio.h>
void main()
{
    int a[20],i,j,n,temp;
    printf("enter the limit n\n");
    scanf("%d",&n);
    printf("enter the %d numbers\n",n);
    for(i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
    }
    for(i=0;i<n;i++)
    {
        for(j=i+1;j<n;j++)
        {
            if(a[i]<a[j])
            {
            temp=a[i];
            a[i]=a[j];
            a[j]=temp;
            }
        }
    }
    printf("the sorted data are:\t");
    for(i=0;i<n;i++)
    {
        printf("%d\t",a[i]);
    }

}

No comments:

Post a Comment