Write a C program to read elements in two matrices and add elements of both matrices. C program for addition of two matrix. Matrix addition program in C. Logic to add two matrix in C programming.
Example
Input
Input elements in 3x3 matrix1: 1 2 3 4 5 6 7 8 9 Input elements in 3x3 matrix2: 9 8 7 6 5 4 3 2 1
Output
Sum of both matrix = 10 10 10 10 10 10 10 10 10
Required knowledge
Basic C programming, For loop, Array
Matrix Addition
Matrix addition is done element wise (entry wise) i.e. Sum of two matrices A and B of size mXn is defined by
(A + B) = Aij + Bij (Where 1 ≤ i ≤ m
and 1 ≤ j ≤ n
)
Program to add two matrices
Output
Enter elements in matrix A of size 3x3: 1 2 3 4 5 6 7 8 9 Enter elements in matrix B of size 3x3: 9 8 7 6 5 4 3 2 1 Sum of matrices A+B = 10 10 10 10 10 10 10 10 10
Happy coding