Computer Science, asked by salonimongia01516, 29 days ago

write a program to multiply two matrices and store the result in third matrix​

Answers

Answered by kimrose011
26

Answer:

Heya mate

Explanation:

  • 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