|
Bubble sort
This example shows implementing bubble sort algorithm.
08 | printf ( "Enter size of array :" ); |
11 | printf ( "\nEnter the elements of the array : " ); |
21 | a[j]=a[j]+a[j+1]-(a[j+1]=a[j]); |
26 | printf ( "\nElements after sorting: " ); |
|
It gives the following output,
Enter size of array :6
Enter the elements of the array : 6 2 1 8 3 9
Elements after sorting: 1 2 3 6 8 9
|
|