Pages

Tuesday, February 17, 2015

C program to multiply two matrices

C++ program to multiply two matrices

#include<iostream.h>
#include<conio.h>


void main()
{
clrscr();
int a[5][5],b[5][5],c[5][5],m,n,p,q,i,j,k;
cout<<"Enter rows and columns of first matrix:";
cin>>m>>n;
cout<<"Enter rows and columns of second matrix:";
cin>>p>>q;

if(n==p)
{
cout<<"
Enter first matrix:
";

for(i=0;i<m;++i)
for(j=0;j<n;++j)
cin>>a[i][j];

cout<<"
Enter second matrix:
";

for(i=0;i<p;++i)
for(j=0;j<q;++j)
cin>>b[i][j];
cout<<"
The new matrix is:
";


for(i=0;i<m;++i)
{
for(j=0;j<q;++j)
{
c[i][j]=0;
for(k=0;k<n;++k)
c[i][j]=c[i][j]+(a[i][k]*b[k][j]);
cout<<c[i][j]<<" ";
}
cout<<"
";

}
}
else
cout<<"
Sorry!!!! Matrix multiplication cant be done";

getch();
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.