system

来自cppreference.com
< c‎ | program

在头文件 <stdlib.h> 中定义
int system( const char *command );
命令参数调用宿主环境的命令处理器。返回实现定义的值(通常被调用的程序返回的值).
原文:
Calls the host environment's command processor with command parameter. Returns implementation-defined value (usually the value that the invoked program returns).
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
如果命令是NULL指针,主机环境的检查,如果有一个命令处理器,并返回非零值,只有当它的存在命令处理器.
原文:
If command is NULL pointer, checks if host environment has a command processor and returns nonzero value only if it the command processor exists.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

command -
字符串确定要运行的命令在命令处理器。如果为NULL指针,命令处理器检查是否存在
原文:
character string identifying the command to be run in the command processor. If NULL pointer is given, command processor is checked for existence
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

实现定义的值。如果commandNULL返回非零值,只有当命令处理程序存在.
原文:
Implementation-defined value. If command is NULL returns nonzero value only if command processor exists.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 示例

[编辑] 另请参阅