给c语言main函数传递参数

时间:2022-05-20 17:32:41

有的时候,用c语言生成了一个控制台应用程序,在调用此程序的时候,需要传递一些参数给此应用程序。

这个时候就可以给main函数传递参数来实现。在以前的c语言教程中,都有main(int argc,char *argv[]){}这样的结构,其中,argc表示参数的个数,*argv[]为一组指向字符串的指针。我们可以通过在调用程序,传递这两个参数给应用程序;在传递的时候,argc不需要赋值,它自动统计输入参数的个数;且argv[0]指向的固定为应用程序的目录;

举例:

void main(int argc,char *argv[])
{
 int i;
 for (i=0;i<argc;i++)
 {
  printf("the result is %s/n",argv[i]);
 }

}

输出结果为:

 

C:/Documents and Settings/Administrator>F:/VC/console1/Release/console1.exe 5 i love you    //注意,每个参数间用空格隔开;
the result is F:/VC/console1/Release/console1.exe
the result is 5
the result is i

the result is love

the result is you

C:/Documents and Settings/Administrator>