2 x 2 matrix or a 3 x 3 matrix etc.? The size of the square array must not exceed 5. Check that it does not exceed the maximum value and re-prompt the user with a message if it exceeds the maximum value. Store this value in the correct data type. b) Depending on the matrix size input, prompt the user for the column values for each row in the first and second matrix and store these values in multi-dimensional arrays of the correct data type. c) Use a looping construct to add the two matrices together d) Print out the two entered matrices in the following format and the result of adding the matrices Matrix A 1 2 3
Write a C program to read two matrices of whole numbers and add the two matrices. The program must perform the following functionality:
a) Prompt the user to determine the size-of the square matrices that will be added, for example is it
a 2 x 2 matrix or a 3 x 3 matrix etc.? The size of the square array must not exceed 5. Check that it does not exceed the maximum value and re-prompt the user with a message if it exceeds the maximum value. Store this value in the correct data type.
b) Depending on the matrix size input, prompt the user for the column values for each row in the
first and second matrix and store these values in multi-dimensional arrays of the correct data
type.
c) Use a looping construct to add the two matrices together
d) Print out the two entered matrices in the following format and the result of adding the matrices
Matrix A
1 2 3
4 5 6
7 8 9
Matrix B
9 8 7
6 5 4
3 2 1
Addition: A + B =
10 10 10
10 10 10
10 10 10
Step by step
Solved in 3 steps with 2 images