- <unistd.h> is needed for fork and execl
- use execlp instead of execl - perform process replacement in the child process, not the parent - wait for process termination (to avoid zombies) - do not return value from void function - more verbose
Showing
Please register or sign in to comment