Computer Science, asked by shilpapr, 5 months ago

write a algorithm of program to multiply two matrixes ​

Answers

Answered by preetkaur06
0

Explanation:

Start

Declare variables and initialize necessary variables

Enter the element of matrices by row wise using loops

Check the number of rows and column of first and second matrices

If number of rows of first matrix is equal to the number of columns of second matrix, go to step 6. Otherwise, print matrix multiplication is not possible and go to step 3.

Multiply the matrices using nested loops.

Print the product in matrix form as console output.

Stop

Answered by yadavravikumar2059
0

Answer:

Write a c program to calculate the matrix multiplication of 2*2 using nested for loop.

Similar questions