I have an array called Names[5] and one called scores[5][5]. Each row corresponds with the name in the respective index.
I need to find the highest score in the scores array and return the name that corresponds with it.
This is what I have so far:
int high = 0;
for(a=0; a<5; a++)
for(b=0; b<5; b++)
if(high<scores[a][b])