The system() Function

The system() function is just a convenient way to execute a command from within a C program. The prototype is:
     int system(char *s);
In Unix, the string, s, is given to a shell to run. When the command completes, system() returns.

For example, one way I implemented the startup screen in the miensfeld game was to use:

        system("cat title1");


[up] to C Library.