A simple parallel matrix multiplication code using MPI.
Matrices are allocated dynamically and are contiguous in memory. Matrix sizes don't need to be divisible by the number or processors; the first worker(slave) processor takes care of this.
How to compile and run MS MPI programs (using MSVC): here.
About contiguous, dynamic multidimensional array allocation in C++: here
This is my first GitHub commit and was made for learning purposes.