Computer Science, asked by gautamrabha97, 11 months ago

write a program for addition of two matrices with output


LuckyYadav2578: in which language?
gautamrabha97: English
LuckyYadav2578: i mean python , html, dhtml , java, etc
LuckyYadav2578: from language its mean to computer language

Answers

Answered by palkaran996020
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 TheAbhishekVerma
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