Row = 12
largest = matrix [12][0];
for (col = 1; col < 2; col ++)
If (largest < matrix [12][2])
Largest = matrix [12][2];
if i wanted to make this a function i would have to store it in code like this right?
int hitemp(int largest)
{
int row, largest, col,
Row = 12
largest = matrix [12][0];
for (col = 1; col < 2; col ++)
If (largest < matrix [12][2])
largest = matrix [12][2];
return largest;
}
can i change the name of the matrix array, and largest?
and i know column is just reverse row with column, but how do you find the lowest number?
comment on syntex please, im a college student and i get it but i dont get it.