typedef double real; #define DIM 3 typedef real vector[3], matrix[DIM][DIM]; void multiply(matrix a, matrix b) { int i, j; matrix c; for(i=0;i