1.system函数的用法 system函数能够执行函数参数中的命令。函数的定义如下: #include <stdlib.h> int system(const char* cmdstring); 当cmdstring为NULL: 如果shell可用则返回非0值,……