getenv()
#include <stdlib.h> char *getenv(const char *name); getenv() , , , . . , . , , . getenv() , , . #include <stdlib.h>
#include <stdio.h>
int main(void)
{
char *s;
s = getenv("COMSPEC"); /* */
printf(" : %s\n",s);
return 0;
}
|
Нет комментариев. Оставить комментарий: |