diff --git a/MatrixMultiply.cpp b/MatrixMultiply.cpp new file mode 100644 index 0000000..9debf00 --- /dev/null +++ b/MatrixMultiply.cpp @@ -0,0 +1,48 @@ +#include +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="; +cin>>c; +cout<<"enter the first matrix element=\n"; +for(i=0;i>a[i][j]; +} +} +cout<<"enter the second matrix element=\n"; +for(i=0;i>b[i][j]; +} +} +cout<<"multiply of the matrix=\n"; +for(i=0;i