argc AND argv[0]

时间:2020-06-26 19:51:57   收藏:0   阅读:66

reference: http://crasseux.com/books/ctutorial/argc-and-argv.html

argc stands for argument counts.

the "v" of argv[] stands for vector, and argv stands for the specific parameter when you input in command. We could test them with the following code.

Notice: when we execute the following program, it should be executable file. e.g. it should be ./a a b c, not gcc -o ab a.cpp

#include <stdio.h>

int main (int argc, char *argv[])
{
  int count;

  printf ("This program was called with \"%s\".\n",argv[0]);

  if (argc > 1)
    {
      for (count = 1; count < argc; count++)
    {
      printf("argv[%d] = %s\n", count, argv[count]);
    }
    }
  else
    {
      printf("The command had no other arguments.\n");
    }

  return 0;
}

 

原文:https://www.cnblogs.com/defoliate/p/13195986.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!