
Has been learning spelling from her for years nwo.
Image from here.
Give meaning to a probably meaningless existence.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#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);
}
}