Computer Science, asked by priyapathak574, 18 days ago

Write a program in c++ to calculate the product of two compatible matrices​

Answers

Answered by ramasre671976
0

Answer:

#include <iostream>

using namespace std;

int main()

{

int a[10][10],b[10][10],mul[10][10],r,c,i,j,k;

cout<<"enter the number of row=";

cin>>r;

cout<<"enter the number of column=

Similar questions