Cplusplus


  1. main 函数的参数

    • argc 是 argument count的缩写,表示传入main函数的参数个数;

    • argv 是 argument vector的缩写,表示传入main函数的参数序列或指针,并且第一个参数argv[0]一定是程序的名称,并且包含了程序所在的完整路径,所以确切的说需要我们输入的main函数的参数个数应该是argc-1个;

    #include <iostream>
    
    using namespace std;
    
    void main(int argc,char *argv[])
    {
        for(int i=0;i<argc;i++)
        {
            cout<<"argument["<<i<<"] is: "<<argv[i]<<endl;
        }
        system("pause");
    }
    

2.


Author: Moule Lin
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source Moule Lin !
  TOC