The function call also be used with NULL as argument to check whether a command processor exists.
Parameters
- command
- C string containing the system command to be executed.
Return Value
The value returned when the argument passed is not NULL, depends on the running environment specifications. In many systems, 0 is used to indicate that the command was succesfully executed and other values to indicate some sort of error.When the argument passed is NULL, the function returns a nonzero value if the command processor is available, and zero otherwise.
Portability
The behavior and return value are platform-dependent.Example
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
See also
| exit | Terminate calling process (function) |
