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
Get step-by-step solutions from verified subject matter experts
