摘要: #include <stdio.h> extern char **environ; int main(){ int i=0; while(1){ if(*(environ+i)==NULL) break; printf(":%s\n",*(environ+i)); i++ ; } return 0; 阅读全文
posted @ 2023-09-14 14:43 杨大茄子 阅读(30) 评论(0) 推荐(0) 编辑