使用cmd调用程序
C:\Users\86157>d:
D:\>notepad
D:\>cd C++
D:\C++>cd 测试
D:\C++\测试>D:\C++\测试\命令行.exe This is a test
D:\C++\测试\命令行.exe
This
is
a
test
C代码
#include <stdio.h>
int main(int argc, char * argv[]){ //命令行参数默认为程序名
for(int i=0; i<argc; i++)
printf( "%s\n", argv[i]);
return 0;
}