Has been learning spelling from her for years nwo.
Image from here.
Give meaning to a probably meaningless existence.
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <errno.h> int main() { pid_t pid = fork(); if (pid == 0) { printf("Killing the child using with next line."); _exit(0); } else if (pid > 0) { printf("While we're at it, might as well kill the parent as well"); exit(0); } }