MPI Matrix Multiply - C Version In this code, the master task distributes a matrix multiply operation to numtasks-1 worker tasks.
NOTE: C and Fortran versions of this code differ because of the way arrays are stored/passed. C arrays are row-major order but Fortran arrays are column-major order.