2023年12月9日

C语言 命令行接收参数

摘要: #include <stdio.h> int main(int argc, char* argv[]) { int i; while (argc-- > 0) { printf("%s\n", *argv++); } return 0; } 阅读全文

posted @ 2023-12-09 15:20 王景迁 阅读(7) 评论(0) 推荐(0) 编辑

导航