C Program to Sort Elements of an Array in Ascending Order

#include <stdio.h>
#include <conio.h>
void main()
{
    int a[10]={2,4,8,1,4,90,23,7,18,2};
    int i,j,temp;
    for(i=0;i<10;i++)
    {
      for(j=i+1;j<10;j++)
        {
            if(a[i]>a[j])
              {
                  temp=a[i];
                  a[i]=a[j];
                  a[j]=temp;
              }
        }
    }
    for(i=0;i<10;i++)
        printf("%d ",a[i]);
    getch();
}

OUTPUT:

No comments:

Post a Comment