this is how we use MPI_Init function
int main(int argc, char **argv) { MPI_Init(&argc, &argv); … }
why does MPI_Init use pointe
It is less overhead to just pass two pointers.