Question: This function finds the largest member of an integer array. write this function using templates to work with any type of array. int findMax(const int

This function finds the largest member of an integer array. write this function using templates to work with any type of array.

int findMax(const int nums[], int size, int& index) {

int i;

int max = nums[0];

index = 0;

for (i = 1; i < size; i++) {

if (nums[i] > max) {

max = nums[i];

index = i;

}

}

return max;

}

answer in c++

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!