Addition of two 3x3 matrix in C | Addition on matrix in C
#include
#include
int main()
{
int mata[3][3],matb[3][3],matc[3][3];
int r,c,k;
for(r=0; r<3; r++)
{
for(c=0; c<3; c++)
{
printf("Enter first matrix : ");
scanf("%d",&mata[r][c]);
}
}
for(r=0; r<3; r++)
{
for(c=0; c<3; c++)
{
printf("Enter second matrix : ");
scanf("%d",&matb[r][c]);
}
}
for(r=0; r<3; r++)
{
for(c=0; c<3; c++)
{
matc[r][c]=0;
for(k=0; k<3;k++)
matc[r][c]=mata[r][c] + matb[r][c];
}
}
printf("New addition matrix : \n");
for(r=0; r<3; r++)
{
for(c=0; c<3; c++)
printf(" %d",matc[r][c]);
printf("\n");
}
getch();
return 0;
}
No comments:
Post a Comment