बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

Showing posts with label C Program to add two matrices using multidimensional arrays. Show all posts
Showing posts with label C Program to add two matrices using multidimensional arrays. Show all posts

C Program to add two matrices using multidimensional arrays

C Program to add two matrices using multidimensional arrays


C Program to add two matrices using multidimensional arrays

#include <stdio.h>
int main() {
 int r,c,a[100][100],b[100][100],sum[100][100],i,j;
printf("Enter number of rows (between 1 and 100): ");
scanf("%d",&r);
printf("Enter number of columns (between 1 and 100): ");
scanf("%d",&c); printf("\nEnter elements of 1st matrix:\n");
 for(i=0;i<r;++i)
for(j=0;j<c;++j)
 { printf("Enter element a%d%d: ",i+1,j+1);
 scanf("%d",&a[i][j]); }
 printf("Enter elements of 2nd matrix:\n");
 for(i=0;i<r;++i) for(j=0;j<c;++j)
 { printf("Enter element a%d%d: ",i+1,j+1);
scanf("%d",&b[i][j]); } for(i=0;i<r;++i) for(j=0;j<c;++j) sum[i][j]=a[i][j]+b[i][j]; printf("\nSum of two matrix is: \n\n"); for(i=0;i<r;++i) for(j=0;j<c;++j) { printf("%d ",sum[i][j]); if(j==c-1) printf("\n\n"); } return 0; }


You can also find following c Matrix  program

  • addition of two matrix in c using array
  • multiplication of two matrix in c
  • matrix subtraction in c
  • addition of two matrix in c++
  • addition of two dimensional array in c
  • matrix addition in c using functions
  • c program for matrix transpose









C Program example List