How do you use the fork() command in such a way that you can spawn 10 processes and have them do a small task concurrently.
Concurrent is the operative word, many pl
Just loop in the "main" process spawning one child after another with each assign a particular task.