#include int bubbleSort(int [], int); int main() { const int NUMEL = 10; int nums[NUMEL] = {22,5,67,98,45,32,101,99,73,10}; int i, moves; moves = bubbleSort(nums, NUMEL); cout << "\nThe sorted list, in ascending order, is:\n"; for (i = 0; i < NUMEL; ++i) cout << " " <