描述
C 库函数 int system(const char *command) 把 command 指定的命令名称或程序名称传给要被命令处理器执行的主机环境,并在命令完成后返回。
声明
下面是 system() 函数的声明。
头文件:
C:#include <stdio.h>
C++:#include <cstdlib>
int system(const char *command)
参数
- command -- 包含被请求变量名称的 C 字符串。
返回值
如果发生错误,则返回值为 -1,否则返回命令的状态。
实例
下面的实例演示了 system() 函数的用法,列出了 unix 机上当前目录下所有的文件和目录。
1 #include <stdio.h> 2 #include <string.h> 3 4 int main () 5 { 6 char command[50]; 7 8 strcpy( command, "ls -l" ); 9 system(command); 10 11 return(0); 12 }