system和popen的用法
1.system#include <stdlib.h>int system(const char *command);system() executes a command specified in command by calling /bin/sh -c command, and returns after the command has been completed. ...