/* File: matmult.c Multiplication of two matricies*/ #include #define M 10 #define N 20 #define P 30 int main() { double a[M][N]; double b[N][P]; double c[M][P]; int i; int j; int k; int pop1,pop2; for(pop1=0;pop1