Computer Science, asked by hassaanchaudhary78, 3 months ago

write a c++ program in which Write a program to perform matrix multiplication of m x n matrix. Given the condition if number of rows of first matrix equal to the number of rows of the second matrix.     ​

Answers

Answered by adirandborgohain
0

When we do multiplication:

The number of columns of the 1st matrix must equal the number of rows of the 2nd matrix.

And the result will have the same number of rows as the 1st matrix, and the same number of columns as the 2nd matrix.

Similar questions