Header Ads Widget

C PROGRAM: Program to implement bubble sort in C language - Sparsh Blog

 Ans:->




The program to implement bubble sort in C language.


Program is as follows:--


#include <stdio.h>

int main()

{

        int array[100], n, c, d, swap;

        printf("Enter number of elements\n");

        scanf("%d", &n);

        printf("Enter %d integers\n", n);

        for (c = 0; c < n; c++)

        scanf("%d", &array[c]);    

        for (c = 0 ; c < n - 1; c++)

        {

                for (d = 0 ; d < n - c - 1; d++)

                {

                        if (array[d] > array[d+1])

                        {

                                swap = array[d];

                                array[d] = array[d+1];

                                array[d+1] = swap;

                        }

                }

        }

        printf("Sorted list in ascending order:\n");

        for (c = 0; c < n; c++)

        printf("%d\n", array[c]);

        return 0;

}


OUTPUT:--


Enter number of elements

5

Enter 5 integers

45

78

23

35

60

Sorted list in ascending order:

15

23

45

68

78


THANKU FOR READING THIS ARTICLE ON-



If you want to suggest any changes in the program please feel free to contact us in the comment section or you can reach us using Contact us Page.

Post a Comment

0 Comments