The system() function passes the string pointed to by string to the host environment to be executed by a command processor in an implementation-defined manner.
int system(const char *string);

The system() function passes the string pointed to by string to the host environment to be executed by a command processor in an implementation-defined manner.

int system(const char *string);
Correct Answer true

Related Questions