#include<stdio.h>
#include<conio.h>
void main()
{int i,j,a[5],temp;
clrscr();
printf("enter elements :\n");
for(i=0;i<5;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<=4;i++)
{for(j=i+1;j<=4;j++)
{if(a[i]>a[j])
{temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
}
printf("\n\n After sorting \n");
for(i=0;i<5;i++)
{printf(" %d",a[i]);
}
getch();
}
Comments
Post a Comment