where can i find a tutorial for creating matrix

i need to write a program that will deal with matrices. In particular you should write a function that will prompt the user for a filename, open the file, and read in the matrix into an array. You should write another function that can be used to display the array on the screen.
You should assume the matrix is stored in the file as discussed above.
You should write a third function that will print the transpose of the matrix that is passed to the function.
So we expect to see three functions in your program that are named as follows:
ReadMatrix(float matrix[][25], int& numrows, int& numcols);
PrintMatrix(float matrix[][25], int numrows, int numcols);
PrintMatrixTranspose(float matrix[][25], int numrows, int numcols);

man, this is so confusing. can you give me some idea how to write this program? thanks.
Topic archived. No new replies allowed.