#define SIZE 100 typedef int mtx[SIZE][SIZE]; /* matrix multiplication. c=ab assumes that all of the matrices are the same size (and square). */ void matrix_mult(mtx a, mtx b, mtx c ) { int i,j,k; /* initialize c to all zeros */ for (i=0;i