#include <stdio.h>
#include<stdlib.h>
int **matrix_mul(int **m1,int **m,int a,int b,int c,int d);
main()
{
int i,j,r1,r2,c1,c2,**p,**q;
printf("Enter the number of rows and columns of first matrix :\t");
scanf("%d%d",&r1,&c1);
printf("Enter the number of rows and columns of second matrix...