execl(“路径+可执行程序”, “参数列表” ,“ 参数列表”, 以NULL结尾);
execl("./bin/echoarg","echoarg","abc",NULL);
可通过where is _____ 查找系统程序路径
system函数作用和execl作用一样
int system(const char *command);
execl(“路径+可执行程序”, “参数列表” ,“ 参数列表”, 以NULL结尾);
execl("./bin/echoarg","echoarg","abc",NULL);
可通过where is _____ 查找系统程序路径
system函数作用和execl作用一样
int system(const char *command);