Write A Program To Multiply Two Matrices
Answers
Answered by
2
Let's see the program of matrix multiplication in C.
#include<stdio.h>
#include<stdlib.h>
int main(){
int a[10][10],b[10][10],mul[10][10],r,c,i,j,k;
system("cls");
printf("enter the number of row=");
scanf("%d",&r);
printf("enter the number of column=");
Similar questions
Math,
5 months ago
Hindi,
5 months ago
Computer Science,
9 months ago
Physics,
1 year ago
Chemistry,
1 year ago