p10

 Write a C program to sort an array using Bubble sort technique.



Output
Enter the size of array: 4
Enter the array elements: 3 7 9 2
Array after sorting: 2 3 7 9

1 comment: