// This program uses a bubble sort to arrange an array of integers in // ascending order // PLACE YOUR NAME HERE #include using namespace std; // function prototypes void bubbleSortArray(int[], int); void displayArray(int[], int); const int SIZE = 5; int main() { int values[SIZE] = { 9, 2, 0, 11, 5 }; cout << "The values before the bubble sort is performed are:" << endl; displayArray(values, SIZE); bubbleSortArray(values, SIZE); cout << "The values after the bubble sort is performed are:" << endl; displayArray(values, SIZE); return 0; } //****************************************************************** // displayArray // // task: to print the array // data in: the array to be printed, the array size // data out: none // //******************************************************************