ADDITION OF MATRIX.

 MATRIX


  • ADDITION OF TWO MATRIX.

       

#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 (= 0; c < m; c++)
      for (= 0; d < n; d++)
         scanf("%d", &first[c][d]);

   printf("Enter the elements of second matrix\n");

   for (= 0; c < m; c++)
      for (= 0 ; d < n; d++)
         scanf("%d", &second[c][d]);
 
   printf("Sum of entered matrices:-\n");
 
   for (= 0; c < m; c++) {
      for (= 0 ; d < n; d++) {
         sum[c][d] = first[c][d] + second[c][d];
         printf("%d\t", sum[c][d]);
      }
      printf("\n");
   }

   return 0;
}

No comments:

Post a Comment

If you have any problems related to solutions or any concept please let me know.

Copyright (c) 2020 Custom Programs All Right Reserved

Pages