C++ Programming/Code/Standard C Library/Functions/system
Tools
General
Sister projects
In other projects
| Syntax | #include<cstdlib>intsystem(constchar*command); |
The system() function runs the given command by passing it to the default command interpreter.
The return value is usually zero if the command executed without errors. If command isNULL, system() will test to see if there is a command interpreter available. Non-zero will be returned if there is a command interpreter available, zero if not.