// Example program #include using namespace std; void mergeSort(int A[],int n){ int k = n/2; int l[k]; int r[k+1]; //base case bool