Program for bubble sort a given array of numbers using C/C++/Python/Java
Bubble sort- In this, sorting begins from the first element and checks the first and second elements. If the first element is greater than the second element it swaps them. This process continues until the last element.