C Exercises: Bubble sort algorithm
2. Bubble Sort Variants
Write a C program to sort a list of elements using the bubble sort algorithm.
Note: Bubble Sort works by swapping adjacent elements if they are in the wrong order.
Visual presentation - Bubble sort algorithm:
Sample Solution:
Sample C Code:
Sample Output:
15 56 12 -21 1 659 3 83 51 3 135 0 -21 0 1 3 3 12 15 51 56 83 135 659
Flowchart:

For more Practice: Solve these Related Problems:
- Write a C program to implement bubble sort recursively and count the number of swaps performed.
- Write a C program to optimize bubble sort by stopping early if no swaps occur in a pass and display the iteration count.
- Write a C program to sort an array of strings lexicographically using bubble sort.
- Write a C program to perform bubble sort in descending order and then verify the order using binary search.
C Programming Code Editor:
Previous: Write a C program to sort a list of elements using the selection sort algorithm.
Next: Write a C program to sort a list of elements using the insertion sort algorithm.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics