摘要: 获取系统环境变量在C/C++中是一项简单的任务。 下面展示了一个纯C语言实现的方法。 ```c #include <stdio.h> #include <stdlib.h> int main(void) { char* pathVar; pathVar = getenv("PATH"); print 阅读全文
posted @ 2023-08-10 14:00 我真的不会C语言 阅读(435) 评论(0) 推荐(0) 编辑