C++ program to perform Matrix Multiplication
// Matrix Multiplication
#include
#include
using namespace std;
int main()
{
   int a[10][10],b[10][10],c[10][10],row,col,i,j;
   cout<<"Enter number of rows of A: ";
   cin>>row;
   cout<<"Enter number of columns of A: ";
   cin>>col;
   cout<>a[i][j];
     }
   cout<>b[i][j];
     }
   cout<
 
No comments:
Post a Comment