Hello, someone can write this program for me?
Given two-dimensional array T(m,n), that element values are different, primary data is stored in a text file. Found the maximum value. Print primary array, found values with their line numbers.
Please someone help i need this very much.
If it's stored in a text file, wouldn't you need to open a file and read the data in, like so?
1 2 3 4 5 6 7 8 9 10 11 12 13 14
const M=4;
const N=5;
int T [M] [N];
call stream handle;
input file stream - handle ("name.text");
check for file=open{
for loop M
for loop N
read the int
store the int accordingly
}
}
}
carry on from there