Computer Science, asked by khushisalooja8677, 9 months ago

Write A Program To Multiply Two Matrices

Answers

Answered by amitkhokhar
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