C++ Programming/Code/Standard C Library/Functions/system

From Wikibooks, open books for an open world
Jump to navigation Jump to search

system[edit | edit source]

Syntax
#include <cstdlib>
int system( const char *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 is NULL, 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.

Related topics
exit - getenv