Given an array of integers, return the difference between the maximum and minimum.
Complete the following file:
prog.cpp
#include <iostream> using namespace std; int differenceBetweenMaxAndMin(const int arr[], int arr_size) {
}