130. C Program to Subtraction of Two Matrices.
How does this program work?
- In this programme you will learn about how to subtract two matrix using C Language.
- variables are stored in two arrays.
- And then by using the Subtraction process result is find.
Here is the code
#include <stdio.h>
int main(void)
{
int r, c, a[10][10], b[10][10], sub[10][10], i, j;
printf("Enter number of rows \n ");
scanf("%d", &r);
printf("Enter number of columns\n ");
scanf("%d", &c);
printf("\nEnter elements of 1st matrix:\n");
for(i=0; i< r; ++i)
for(j=0; j< c; ++j)
{
printf("Enter element a%d%d: ",i+1,j+1);
scanf("%d",&a[i][j]);
}
printf( "Enter elements of 2nd matrix:\n");
for(i=0; i< r; ++i)
for(j=0; j< c; ++j)
{
printf("Enter element a%d%d: ",i+1, j+1);
scanf("%d", &b[i][j]);
}
// Subtracting Two matrices
for(i=0;i< r;++i)
for(j=0;j< c;++j)
{
sub[i][j]=a[i][j]-b[i][j];
}
// Displaying the result
printf( "\nSum of two matrices: \n");
for(i=0;i< r;++i)
for(j=0;j< c;++j)
{
printf("%d ",sub[i][j]);
if(j==c-1)
{
printf("\n\n");
}
}
return 0;
}