google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.: Write a C program for multiplication of two m*n matrices.

Wednesday, April 1, 2015

Write a C program for multiplication of two m*n matrices.

Write a ‘C’ program for multiplication of two m*n matrices.

#include<stdio.h>
#include<conio.h>
void main()
{
   int m,n,p,q,i=0,j=0;
   int a[10][10],b[10][10],c[10][10];
   clrscr();
   printf("enter the number of row: ");
   scanf("%d",&m);
   printf("enter the number of column :");
   scanf("%d",&n);
   printf("enter the first matrix elements\n");
   for(i=0;i<m;i++)
   {
      for(j=0;j<n;j++)
      {
scanf("%d",&a[i][j]);
      }
   }
   printf("enter the number of row: ");
   scanf("%d",&p);
   printf("enter the number of column :");
   scanf("%d",&q);
   printf("enter the second matrix elements\n");
   for(i=0;i<p;i++)
   {
      for(j=0;j<q;j++)
      {
scanf("%d",&b[i][j]);
      }
   }
   for(i=0;i<m;i++)
   {
      for(j=0;j<q;j++)
      {
  c[i][j]=a[i][j]*b[j][i];
      }
   }
   printf("multiplication of matrix is \n");
   for(i=0;i<m;i++)
   {
      for(j=0;j<q;j++)
      {
printf("%d  ",c[i][j]);
      }
      printf("\n");
   }
   getch();
}

रामायण

रामायण दशरथ की तीन पत्नियाँ – कौशल्या, सुमित्रा , कैकेयी दशरथ के चार पुत्र – राम,लक्ष्मण,भरत,शत्रुघ्न दशरथ: राम के पिता और कौशल के राजा कौशल...