#include<stdio.h> #include<iostream> int main(int argc,char *argv[]) { printf("参数的个数是(包括第0个当前可执行文件的名字):%d\n", argc); //参数列表,字符串指针 while (*argv) { puts(*argv++); } system("pause"); return 0; }
输出:
原文地址:https://www.cnblogs.com/xiximayou/p/12128441.html
时间: 2024-10-21 03:41:42