/* * 测试环境变量参数 */ #include #include int main(int argc, char *argv[]) { printf("%s\n%s\n", getenv("hello"), getenv("123")); return 0; }