holdtom
格式:system(字符串)例如:char my_cmd1[]="ls -l";char my_cmd2[]="ls -l > abc.txt";char my_cmd3[]="simser.exe 67";system(my_cmd1);system(my_cmd2);system(my_cmd3);---------------simser.exe 6767 是位置参数才可以这样写。(也就是 通过 simser.exe 的main(int argc, char *argv[]) argv 传入的)system("simser","67"); -- wrong, system takes one parameter only.