08-08-2017 06:08 AM
bonjour je suis débutante ,je veux faire un ping sur un power sensor NRP Z11 avec le IDE labwindows CVI donc j'ai écrit ce code
#include <cvintwrk.h>
#include <ansi_c.h>
#include <cvirte.h>
int main (int argc, char *argv[])
{
InetPing ("192.168.8.1",1, 10000);
return 0;
}
mais toujours il y a un errreur :
12, 30 Type error in argument 2 to `InetPing'; found 'int' expected 'pointer to int'.
vous pouvez m'aider ?
Solved! Go to Solution.
08-08-2017 06:59 AM
the second argument is where the function returns the answer to your query, so you need to provde a variable, not a number:
int answer = 0;
InetPing ("192.168.8.1",&answer, 10000);
08-08-2017 07:29 AM
merci mais toujours il y a un problème voila le code
int answer=0 ;
InetPing ("192.168.8.1", &answer, 10000);
printf("réponse",answer);
getchar();
c'était l'erreur :
NON-FATAL RUN-TIME ERROR: "stage.c", line 13, col 22, thread id 0x00001B1C: Too many parameters.
08-08-2017 07:38 AM
unfortunately we do not know your line numbers but I guess that the problem now is your printf command... you miss a format specifier
08-08-2017 09:29 AM
merci ça bien marché
08-08-2017 09:35 AM
de rien