write a program for addition of two matrices with output
LuckyYadav2578:
in which language?
Answers
Answered by
0
Matrix addition in C: C program to add two matrices, i.e., compute the sum of two matrices and then print it. Firstly a user will be asked to enter the order of matrix (number of rows and columns) and then two matrices. For example, if a user input order as 2, 2, i.e., two rows and two columns and matrices as
First matrix:
1 2
3 4
Second matrix:
4 5
-1 5
then the output of the program (Summation of the two matrices) is:
5 7
2 9
Matrices are frequently used in programming to represent graph data structure, in solving equations and in many other ways.
Answered by
0
Answer:
Have a look at this tutorial : Go to Codewin_org and search your question there
Explanation:
Have a look at this tutorial : Go to Codewin_org and search your question there
Similar questions