char *getenv(char *NomVariable);
#include <stdio.h> #include <stdlib.h> char *Path; ... Path=getenv("PATH"); if (Path) { ... } ...
Si la variable environnement n'existe pas, le résultat est NULL.