#include <stdio.h>   
int main()   
{  
    int m, n, c, d, first[10][10], second[10][10], addition[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]);  
    printf("adition of entered matrices: \n");  
    for (c = 0; c < m; c++)   
    {  
        for (d = 0; d < n; d++)   
        {  
           addition[c][d] = first[c][d] + second[c][d];  
            printf("%d\n", addition[c][d]);  
        }  
        printf("\n");  
    }  
    return 0;  
}  

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: