Connect Me

twitterfacebookgoogle plus email

  Instagram View Biwas Bhattarai's profile on LinkedIn

C Program to add two matrices

#include <stdio.h>
#include<conio.h>

void main()
{
clrscr();
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]);

   printf("Sum of entered matrices:-\n");

   for (c = 0; c < m; c++)
   {
      for (d = 0 ; d < n; d++)
{
         sum[c][d] = first[c][d] + second[c][d];
         printf("%d\t", sum[c][d]);
     }
      printf("\n");
}

 getch();
}

CLICK HERE to watch the video tutorial of this program in Youtube.
Ą
https://www.flickr.com/photos/spklg/15211044551/