On Sun 2008-10-19 10:20:12 UTC+0100, David Hamill ([EMAIL PROTECTED]) wrote:
> system("notepad.exe"); /* opens new window */
> This program appears to hang until the Notepad window is closed,
> because it's waiting for the system() call to return. If this is not
> what you want, you'll need to start a child process for Notepad. This
> is considerably more complicated.
system("start notepad.exe");
Not complicated :-)
