Program in C to arrange the elements of an array in ascending order

Write a program in C to arrange the elements of an array in ascending order

/*ARRANGE THE ELEMENTS IN ARRAY IN ASSENDING ORDER*/

#include "stdio.h"
#include "conio.h"

main()
{
            int a[100],i,n,j,search,temp;
            printf("\n how many no's in array");
            scanf("%d",&n);
            printf("\n enter %d elements in array",n);
            for(i=0;i
                        scanf("%d",&a[i]);
            for(i=0;i
            {
                        for(j=i+1;j
                        {
                                    if(a[i]>a[j])
                                    {
                                                temp=a[i];
                                                a[i]=a[j];
                                                a[j]=temp;
                                    }
                        }
                        printf("%4d",a[i]);
            }
            getch();
}


Post a Comment