#include <stdio.h> #include <unistd.h> // pid_t, getpid() int main( ){ pid_t pid1, pid2, pid3; // Process IDs pid1 = fork(); pid2 = fork(); pid3 = fork(); printf("All done!\n"); return 0; }