/*DEVELOP A PROGRAM FOR MATRIX MULTIPLICATION*/
#include<stdio.h>
main()
{
    int a[20][20],b[20][20],c[20][20],r1,c1,c2,r2,i,j,k;
    printf("\tEnter the row and coloumn size of matrix1\n");
    scanf("%d%d",&r1,&c1);
    printf("\tEnter the row and coloumn size of matrix2\n");
    scanf("%d%d",&r2,&c2);
    if (c1!=r2)
   
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.

Saturday, May 14, 2011

matrix multiplication,c,programm,lab,record,first semester,bca

/*DEVELOP A PROGRAM FOR MATRIX MULTIPLICATION*/
#include<stdio.h>
main()
{
    int a[20][20],b[20][20],c[20][20],r1,c1,c2,r2,i,j,k;
    printf("\tEnter the row and coloumn size of matrix1\n");
    scanf("%d%d",&r1,&c1);
    printf("\tEnter the row and coloumn size of matrix2\n");
    scanf("%d%d",&r2,&c2);
    if (c1!=r2)
   
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.