#include <stdio.h> #include <stdlib.h> int main() { char *p; if((p = getenv("USER"))) printf("USER=%s\n", p); return 0; }. 执行. USER=root ...
確定! 回上一頁