How do you spawn another process in C?
It really depends on what you’re trying to do, exactly, as it’s: OS dependent Not quite clear what you’re trying to do. Nevertheless, I’ll try to provide some information for you to decide. On UNIX, fork() creates a clone of your process from the place where you called fork. Meaning, if I have the following … Read more