Skip to content

Instantly share code, notes, and snippets.

@xaqq
Created July 5, 2013 15:49
Show Gist options
  • Save xaqq/5935428 to your computer and use it in GitHub Desktop.
Save xaqq/5935428 to your computer and use it in GitHub Desktop.
fork and printf, C
#include <stdio.h>
#include <unistd.h>
int main(int ac, char **av)
{
printf("Hello World!");
fork();
return (0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment