Monday, 10 March 2014

Write a program to sort n integers using bubble sort.

#include<stdio.h>
main()
{
    int a[100],n,i,j,k,temp;
    printf("\nEnter number of terms=");
    scanf("%d",&n);
    printf("\nEnter the integers=");
    for(i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
    }
    printf("\nThe unsorted array is=");
    for(i=0;i<n;i++)
    {
        printf("%d ",a[i]);
    }


    for(i=0;i<n;i++)
    {
        for(j=0;j<n-1-i;j++)
        {
            if(a[j]>a[j+1])
            {
                temp=a[j];
                a[j]=a[j+1];
                a[j+1]=temp;
            }
        }
    }
}

No comments:

Post a Comment