/* Program For Sum of Two Matrix */
#include<stdio.h>
#include<conio.h>
void main()
{
int data1[5][5],data2[5][5],sum[5][5];
int cho,i,j,r,c;
clrscr();
printf("Enter Rows of Matrix:- ");
scanf("%d",&r);
printf("\nEnter Columns of Matrix:- ");
scanf("%d",&c);
for(i=1;i<=r;i++)
{
for(j=1;j<=c;j++)
{
printf("Enter The First Matrix Element [%d][%d] ",i,j);
scanf("%d",&data1[i][j]);
}
}
for(i=1;i<=r;i++)
{
for(j=1;j<=c;j++)
{
printf("Enter The Second Matrix Element [%d][%d] ",i,j);
scanf("%d",&data2[i][j]);
sum[i][j]=data1[i][j]+data2[i][j];
}
}
printf("\nSum of Matrix \n\n");
for(i=1;i<=r;i++)
{
for(j=1;j<=c;j++)
{
printf("%d ",sum[i][j]);
}
printf("\n");
}
getch();
}
-----------------------------------------------------------------------------
Input:- Enter Row of Matrix:- 2
Enter Columns of Matrix:- 2
Enter The First Matrix Element [1][1] 1
Enter The First Matrix Element [1][2] 2
Enter The First Matrix Element [2][1] 3
Enter The First Matrix Element [2][2] 4
Enter The Second Matrix Element [1][1] 2
Enter The Second Matrix Element [1][2] 4
Enter The Second Matrix Element [2][1] 6
Enter The Second Matrix Element [2][2] 8
Output:- Sum of Matrix
3 6
9 12