#include<stdio.h>
main()
{
int a[3][3]={{2,3,4},{1,3,2},{2,4,5}};
int b[3][3]={{1,3,2},{2,1,3},{4,1,5}};
int c[3][3]={{0},{0},{0}};
int i,j,t;
for(i=0;i<3;i++)
{ for(j=0;j<3;j++)
for(t=0;t<3;t++)
{ c[i][j]=c[i][j]+a[i][t]*b[t][j];
}
}
#include<stdio.h>
main()
{
int a[2][3]={{2,3,4},{1,3,2}};
int b[3][1]={{1,3,2}};
int c[2][1]={0};
int i,j,t;
for(i=0;i<2;i++)
{ for(j=0;j<1;j++)
for(t=0;t<3;t++)
{ c[i][j]=c[i][j]+a[i][t]*b[t][j];
}
}