/* matrix7.c - more rows than processors */ #include #include int * makeVector(n) int n; { return (int *)malloc(n*sizeof(int)); } writeVector(fout,v,n) FILE * fout; int * v; int n; { int i; for(i=0;i