If what you want is creating multiple child processes doing their "own business" right after their creation, you should use vfork() (used to create new processes without fully copying the address space of the father process) and exec() family to replace the children processes' images with whatever you want.
if you don't want the father to wait until the child is finished, you should take advantage of asynchronous signal handling. A SIGCHLD is sent when a child process ends. So you can put the wait() within the signal handler for SIGCHLD rather than the father process and let the signal handler collect returning status for child process.
Below is a toy example:
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>
#include <stdlib.h>
sig_atomic_t child_process_ret_status;
void spawn(char *program,char *argv[]){
pid_t child_pid=vfork();
if(child_pid>0){
printf("the parent process pid: %d\n",(int)getpid());
printf("the cpid: %d\n",(int)child_pid);
system("ping -c 10 www.google.com");
}else{
printf("the new process %d is going to execute the new program %s\n",(int)getpid(),program);
execvp(program,argv);
printf("you'll never see this if everything goes well.\n");
}
}
void child_process_ret_handle(int sigval){
if(sigval == SIGCHLD){
printf("SIGCHLD received !\n");
wait(&child_process_ret_status);
}
}
int main(void){
signal(SIGCHLD,child_process_ret_handle);
char *program="sleep";
char *argv[]={
"sleep",
"5",
NULL
};
spawn(program,argv);
if(WIFEXITED (child_process_ret_status)){
printf("child process exited successfully with %d\n",WEXITSTATUS (child_process_ret_status));
}else{
printf("the child process exited abnormally\n");
}
printf("parent process: %d returned!\n",getpid());
return 0;
}