diff --git a/07. Matrix/Matrix multitplication b/07. Matrix/Matrix multitplication new file mode 100644 index 0000000..a00c600 --- /dev/null +++ b/07. Matrix/Matrix multitplication @@ -0,0 +1,64 @@ +#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