0% found this document useful (0 votes)
39 views

Main M N C D First Second Sum: Int Int

The document contains C code to add two matrices of user-defined size. It prompts the user to enter the number of rows and columns for the matrices, then separately inputs the elements of two matrices. It then uses nested for loops to add the corresponding elements of the two matrices and store them in a third sum matrix. Finally, it prints out the sum matrix to display the result.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views

Main M N C D First Second Sum: Int Int

The document contains C code to add two matrices of user-defined size. It prompts the user to enter the number of rows and columns for the matrices, then separately inputs the elements of two matrices. It then uses nested for loops to add the corresponding elements of the two matrices and store them in a third sum matrix. Finally, it prints out the sum matrix to display the result.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

#include <stdio.

h>
int main()
{
int m, n, c, d, first[10][10], second[10][10], sum[10][10];
printf("Enter the number of rows and columns of matrix\n");
scanf("%d%d", &m, &n);
printf("Enter the elements of first matrix\n");
for ( c = 0 ; c < m ; c++ )
for ( d = 0 ; d < n ; d++ )
scanf("%d", &first[c][d]);
printf("Enter the elements of second matrix\n");
for ( c = 0 ; c < m ; c++ )
for ( d = 0 ; d < n ; d++ )
scanf("%d", &second[c][d]);
for ( c = 0 ; c < m ; c++ )
for ( d = 0 ; d < n ; d++ )
sum[c][d] = first[c][d] + second[c][d];
printf("Sum of entered matrices:-\n");
for ( c = 0 ; c < m ; c++ )
{
for ( d = 0 ; d < n ; d++ )
printf("%d\t", sum[c][d]);
printf("\n");
}
return 0;
}

You might also like