C program for addition of two matrices


                                   While we performing the addition of two matrices than we also need one more matrix or 2-D array to store the result of addition.

C program to addition of two matrix.



#include<stdio.h>

void main()
{
       int a[3][3],b[3][3],c[3][3];
       int i,j;
       clrscr();

       printf("Enter elements in First array : \n");

       for(i=0;i<3;i++)
       {
              for(j=0;j<3;j++)
              {
                     scanf("%d",&a[i][j]);
              }
       }

       printf("Enter elements in Second array : \n");

        for(i=0;i<3;i++)
       {
              for(j=0;j<3;j++)
              {
                     scanf("%d",&b[i][j]);
              }
       }

       printf("Matrix A\n");
       for(i=0;i<3;i++)
       {
              for(j=0;j<3;j++)
              {
                     printf("%d ",a[i][j]);
              }
              printf("\n");
       }

       printf("Matrix B\n");
       for(i=0;i<3;i++)
       {
              for(j=0;j<3;j++)
              {
                     printf("%d ",b[i][j]);
              }
              printf("\n");
       }

       printf("Addition of A & B Matrix : \n");
       for(i=0;i<3;i++)
       {
              for(j=0;j<3;j++)
              {
                     c[i][j]=a[i][j]+b[i][j];
                     printf("%d ",c[i][j]);
              }
              printf("\n");
       }
       getch();
}


c program for addition of two matrix


0 comments:

Post a Comment