system()

#include <stdlib.h>

int system( char* string );

This function executes the command string. The value that system() returns is implementation-dependent. However, the value returned usually indicates the exit status of the command executed.


Back to Essential C Functions.

Log in or register to write something here or to contact authors.