Write a C Program to read two matrices and perform addition and subtractions of two matrices.

#include<stdio.h>
#include<conio.h>
void main()
{
   int a[10][10],b[10][10],sum[10][10],diff[10][10],i,j,n;
   clrscr();
   printf("Enter the order of matrix:");
   scanf("%d",&n);
   printf("\nEnter the matrix Elements A\n");
   for(i=0;i<n;i++)
   for(j=0;j<n;j++)
   scanf("%d",&a[i][j]);
   printf("\nEnter the matrix of elements B\n");
   for(i=0;i<n;i++)
   for(j=0;j<n;j++)
   scanf("%d",&b[i][j]);
   for(i=0;i<n;i++)
   for(j=0;j<n;j++)
   {
    sum[i][j]=a[i][j]+b[i][j];
    diff[i][j]=a[i][j]-b[i][j];
   }
   printf("\nSumation matrix\n");
   for(i=0;i<n;i++)
   for(j=0;j<n;j++)
   {
      printf("%d\t",sum[i][j]);
   }
   printf("\n");
   printf("Difference Matrix\n");
   for(i=0;i<n;i++)
   for(j=0;j<n;j++)
   {
      printf("%d\t",diff[i][j]);
   }
   printf("\n");
   getch();
   return;
}

No comments:

Post a Comment