Skip to main content

Posts

Showing posts from December, 2017

Multiplication of Matrices

/*Multiplication of Matrices*/ #include<stdio.h> #include<conio.h> #include<math.h> void main() {    int a[10][10], b[10][10], c[10][10];    int i,j,n,m,k;    clrscr();    printf("\n\t Multiplication of two matrices");    printf("\nEnter the no. of row and columns:");    scanf("%d%d",&m,&n);    printf("\nEnter the first matrix:\n");    for(i=0;i<m;i++)    {      for(j=0;j<n;j++)      { scanf("%d",&a[i][j]);      }    }    printf("\nEnter the Second matrix:\n");    for(i=0;i<m;i++)    {      for(j=0;j<n;j++)      { scanf("%d",&b[i][j]);      }    }    printf("\nMultiplication of two matrices:\n");    for(i=0;i<m;i++)    {      for(j=0;j<n;j++)      { c[i][j]=0; for(k=0;k<n;k++) {   c[i][j]= c[i][j] + a[i][k] * b[k][j]; } printf("%d",c[i][j]); printf("\t");      }      printf("\n

Addition and Subtraction of two Matrices

/*Program to Find the Addition and Subtraction of two Matrices*/ #include<stdio.h> #include<conio.h> #include<math.h> void main() {    int a[10][10], b[10][10], c[10][10];    int i,j,n,m;    clrscr();    printf("\n\tAddition and Subtraction of two matrices");    printf("\nEnter the no. of rows and columns:");    scanf("%d%d",&m,&n);    printf("\nEnter the first matrix:\n");    for(i=0;i<m;i++)    {      for(j=0;j<n;j++)      { scanf("%d",&a[i][j]);      }    }    printf("\nEnter the first matrix:\n");    for(i=0;i<m;i++)    {      for(j=0;j<n;j++)      { scanf("%d",&b[i][j]);      }    }    printf("\nAddition of two matrices:\n");    for(i=0;i<m;i++)    {      for(j=0;j<n;j++)      {        printf("%d",a[i][j]+b[i][j]);        printf("\t");      }      printf("\n");    }       printf