//given two matrices of sizes n*m and n1*m1 //find multiplication of the two matrices and print it #include using namespace std; int main() { int n,m,n1,m1; // cout<<"Enter the dimensions of first matrix\n"; cin>>n>>m; int a[n][m]; // cout<<"Enter the elements of first matrix\n"; for(int i=0;i>a[i][j]; } } //cout<<"Enter the dimensions of Second matrix\n"; cin>>n1>>m1; int b[n1][m1]; //cout<<"Enter the elements of second matrix\n"; for(int i=0;i>b[i][j]; } } if(m!=n1) { cout<<"Multiplication of the matrices is not possible"; } else { int c[n][m1]; for(int i=0;i