68.6k views
2 votes
#include "pch.h" #include using namespace std; // function prototypes void bubbleSort Array(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); bubble Sort Array(values, SIZE); cout << "The values after the bubble sort is performed are:" << endl; displayArray(values, SIZE); return 0; }

User DaShier
by
5.4k points

1 Answer

3 votes

Answer:

what are you asking

Step-by-step explanation:

User Sojin
by
6.5k points