What\'s the best way for a running C or C++ program that\'s been launched from the command line to put itself into the background, equivalent to if the user had launched fro
On UNIX, you need to fork twice in a row and let the parent die.