Question: C++ please How to make this find the max from a file called int.txt int array_maximum(int values[], int SIZE) { int max = values[0]; int

C++ please

How to make this find the max from a file called "int.txt"

int array_maximum(int values[], int SIZE)

{

int max = values[0];

int i;

for (i=1; i < SIZE; i++)

{

if (values[i]>max)

max = values[i];

}

return max;

}

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 Databases Questions!