Wednesday, January 29, 2014

Matrix Addition and Multiplication with c language

#include<stdio.h>
#include<conio.h>
void main()
{
    int a[2][2],b[2][2],c[2][2],d[2][2];
    int i,j,s=0,k;
    printf("\n Enter the elements of the 1st matrix=\n");

    for(i=0;i<2;i++)
    {
        for(j=0;j<2;j++)
        {     printf("a[%d][%d]=",i,j);
            scanf("%d",&a[i][j]);
        }
    }
    printf("\n Enter the elements of the 2nd matrix=\n");
    for(i=0;i<2;i++)
    {
        for(j=0;j<2;j++)
        {     printf("b[%d][%d]=",i,j);
            scanf("%d",&b[i][j]);
        }
    }
    for(i=0;i<2;i++)
    {
        for(j=0;j<2;j++)
        {
            c[i][j]=a[i][j]+b[i][j];
        }
    }


    for(i=0;i<2;i++)
     {
        for(j=0;j<2;j++)
        {
          for(k=0;k<2;k++)
          {
             s=s+a[i][k]*b[k][j];
          }
          d[i][j]=s;
          s=0;
      }
     }


    printf("Addition of two matrices=\n");
    for(i=0;i<2;i++)
    {
        for(j=0;j<2;j++)
        {
            printf("\t%d",c[i][j]);
        }
        printf("\n");
    }

      printf("Multiplication of two matrices=\n");
    for(i=0;i<2;i++)
    {
        for(j=0;j<2;j++)
        {
            printf("\t%d",d[i][j]);
        }
        printf("\n");
    }

 getch();
}

No comments:

Post a Comment