Slip 6 - B) Write a ‘C’ program to accept and sort n elements in ascending order by using bubble sort.

Solution:

#include<stdio.h>
void bubble_sort(int [],int);
void main()
{
    int A[20],temp,i,j,n;
    printf("Enter size of Array :\n");
    scanf("%d",&n);
    printf("\nEnter Array elements :\n");
    for(i=0;i<n;i++)
    {
            scanf("%d",&A[i]);
    }
    bubble_sort(A,n);
    
    printf("\nSorted Array :\n");
    for(i=0;i<n;i++)
    {
        printf("%d\n",A[i]);
    }
}
void bubble_sort(int A[],int n)
{
    int i,j,temp;
    for(i=1;i<n;i++)
    {
        for(j=0;j<n-i;j++)
        {
            if(A[j]>A[j+1])
            {
                temp=A[j];
                A[j]=A[j+1];
                A[j+1]=temp;
            }
        }
    }
}

Post a Comment

0 Comments