#include #include #include #include int main(){ int pid = fork(); if(pid == 0) {// Then we are the child printf("We're the child, but we're not going to live very long. Just 10 seconds!.\n"); while(1) sleep(10); return 13; } return 0; }