Question: Rewrite the following function so that it can operate on arrays of any data type, not just integers. You may assume that all operations
Rewrite the following function so that it can operate on arrays of any data type, not just integers. You may assume that all operations and comparisons are defined for all data types that we would pass into this function: int cloneArray Return Max (int* arr1, int sizel, int* arr2, int size2) { int end size1; if (end size2) end = size2; for (int i = 0; i < end;3B i++) arr1[i] = arr2[i]; int max = arr1[size1 1]; for (int i = size12; i >= 0; i--) if (max
Step by Step Solution
There are 3 Steps involved in it
To modify the function ReturnMax to operate on arrays of any data type we can use a template so that ... View full answer
Get step-by-step solutions from verified subject matter experts
