Hi, I&#39;m newbie in MPI applications and I have a lot of questions. But my first problem is with the execution. <br>I try execute the code using mpiexec, but never find the library mpi.h. I start with a simple code:<br><br>

#include &lt;stdio.h&gt;<br>#include &lt;mpi.h&gt;<br><br>int main(int argc, char **argv){<br>    <br>    int t;<br>    t = MPI_Init(&amp;argc,&amp;argv);<br>    if(t == MPI_SUCCESS){<br>        printf(&quot;test ok&quot;);<br>

    }<br>    MPI_Finalize();<br>    return 0;<br>}<br><br><br><br><br>So, I compiled with mpicc test.c -o test. The result was the executable, but it isn&#39;t work. The mensage no such file or directory.<br>I need some help.<br>
<br>thank you<br>