Write a C program to sort the 10 given numbers using bubblesort

#include<stdio.h>
int main ()
{
int a[5];
int i,j,temp;
for(i=0;i<5;i++)
{
printf("Enter value for a[%d]",i);
scanf("%d",&a[i]);
}
for(j=0;j<5;j++)
{
        for(i=0;i<4;i++)
        {
                if(a[i]>a[i+1])
                {
                temp=a[i];
                a[i]=a[i+1];
                a[i+1]=temp;
                }
        }
}
printf("Ascending order =\n");
for(i=0;i<5;i++)
printf("\t %d",a[i]);
return 0;
}

Post a Comment

0 Comments