Programming C Question
Write a program that reads in two 3x3 matrices from the file matrix.txt. Add the two matrices together and print the result to the screen. File Organization Example: 1 2 3 1 5 7 2 1 8 1 1 5 2 4 2 3 1 6 Matrix Addition Example - Add corresponding elements together: 1 2 3 1 1 5 1+1 2+1 3+5 2 3 8 1 5 7 + 2 4 2 = 1+2 5+4 7+2 = 3 9 9 2 1 8 3 1 6 2+3 1+1 8+6 5 2 14