Q. Define syntax of MPI_Scatter function?
MPI_Scatter(Sendaddr, Scount, Sdatatype, Receiveaddr, Rcount, Rdatatype, Rank, Comm):
'Using this function process with rank' rank in group comm. transmits personalized message to all processes (including self) and sorted message (in accordance with the rank of sending processes) are stored in the send buffer of process. First three factors define buffer of sending process and subsequent three define buffer of receiving process.