标签:style http color os strong ar sp on c
1.int main(int argc,char **argv)里的argc和argv各是什么作用和含义
char *argv[]是一个字符数组,其大小是int argc,主要用于命令行参数 argv[] 参数,数组里每个元素代表一个参数;
比如你输入
test a.c b.c t.c
则
argc = 4
argv[0] = "test"
argv[1] = "a.c"
argv[2] = "b.c"
argv[3] = "t.c"
类似这种:
标签:style http color os strong ar sp on c
原文地址:http://www.cnblogs.com/gildoringlorin/p/3949195.html