<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><div dir="ltr">when i running the following program, i have this error (Exception non gérée à 0x00B54BE2 (mpich2nemesis.dll) dans samedi1.exe : 0xC0000005 : Violation d'accès lors de la lecture de l'emplacement 0x00000000.)<div>program :</div><div><div>#include <stdio.h></div><div>#include "mpi.h"</div><div><br></div><div>int main(int argc, char *argv[])</div><div>{</div><div><br></div><div><span class="" style="white-space:pre">        </span>int a[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };</div><div><span class="" style="white-space:pre">     </span>int rcounts[4] = { 2, 2, 2, 2 };</div><div><span class="" style="white-space:pre">   </span>int disp[4] = { 0, 2, 4, 6 };</div><div><span class="" style="white-space:pre">      </span>int b[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };</div><div><span class="" style="white-space:pre">     </span>int procid;</div><div><span class="" style="white-space:pre">        </span>MPI_Init(&argc, &argv);</div><div><span class="" style="white-space:pre">    </span>MPI_Comm_rank(MPI_COMM_WORLD, &procid);</div><div><span class="" style="white-space:pre">        </span></div><div><span class="" style="white-space:pre">   </span>MPI_Scatterv(&a, rcounts, 0, MPI_INT, &b, 100, MPI_INT, 0, MPI_COMM_WORLD);</div><div><span class="" style="white-space:pre">        </span>printf("%d", b[0]);</div><div><span class="" style="white-space:pre">      </span>printf("sanaa");</div><div><span class="" style="white-space:pre"> </span>MPI_Finalize();</div><div><span class="" style="white-space:pre">    </span>return 0;</div><div>}</div></div></div>