I\'m running some commands with the C++ system() function:
system()
int system ( const char * command );
How can I collect the standard
system() is declared and defined in libc. You can either read the first link I provided, or do man system at a command prompt in your shell.
man system