#include #define M 6 #define N 6 void matprint1(double [][N],int,int,char); void matprint2(double (*)[N],int,int,char); int main() { double a[M][N],*p,*q[4],(*s)[N]; int m,n,i,j; m=3; // m actual row dimension n=4; // n actual column dimension for(i=0;i