Let myrank be the rank of an MPI process and nprocs be the n…

Let myrank be the rank of an MPI process and nprocs be the number of processes in MPI_COMM_WORLD. Write the MPI code to communicate an integer array (int data[1000]) in the MPI process with rank myrank to another array (int recData[1000]) in the MPI process with rank (myrank + 3) % nprocs for all processes in MPI_COMM_WORLD.