标签:http io ar os 使用 sp on bs ef
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
char *pathvar;
pathvar = getenv("PATH");
printf("pathvar=%s",pathvar);
system("pause");
return 0;
}
注: getenv() 是在stdlib中定义的,当然我们也可以在c++中,通过 #include<cstdlib> std:getenv()来使用它.若考虑可移植性,这两种方式都是可以优先使用的.
在windows环境下,我们也可以用WINAPI GetEnvironmentVariable() 来获取某个环境变量的值.
标签:http io ar os 使用 sp on bs ef
原文地址:http://www.cnblogs.com/yang95/p/4164353.html