JSRUN 用代码说话
🐈南北
etangtang99
第75677位JSRUN用户

活跃于 2023-06-07 16:16 访问量:5299
关注


#include <stdio.h> #include <stdlib.h> int main(int argc,char *argv[]) { printf("%s\n",argv[0]);//读取可执行程序(包括路径) /*读取参数*/ int i = 1; while(i < argc) { printf("%s\n",argv[i]); i++; } return 0; }


没有了
1/1
没有了