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 王景迁 阅读(33) 评论(0) 推荐(0)
posted @ 2023-12-09 15:20 王景迁 阅读(33) 评论(0) 推荐(0)