click on this link......

LinkGrand.com

Tuesday 22 January 2013

Addition of two matrix


#include<stdio.h>
#include<conio.h>
void main()
{
    int a[3][3],i,j,b[3][3],c[3][3];
    clrscr();
    printf("Enter the elements for 1st matrix:");
    for(i=0;i<3;i++)
    {
        for(j=0;j<3;j++)
        {
            scanf("%d",&a[i][j]);
        }
    }
    printf("Enter the elements for 2nd matrix:");
    for(i=0;i<3;i++)
    {
        for(j=0;j<3;j++)
        {
            scanf("%d",&b[i][j]);
        }
    }
    for(i=0;i<3;i++)
    {
        for(j=0;j<3;j++)
        {
            c[i][j]=a[i][j] + b[i][j];
        }
    }

    printf("The addition of two matrix is :\n");
    for(i=0;i<3;i++)
    {
        for(j=0;j<3;j++)
        {
            printf("%d\t",c[i][j]);
        }
        printf("\n");

    }
    getch();
}

Addition of two matrix
Addition of two matrix





No comments:

Post a Comment