Skip to content

Instantly share code, notes, and snippets.

@semihozkoroglu
Created December 2, 2010 00:09
Show Gist options
  • Select an option

  • Save semihozkoroglu/724499 to your computer and use it in GitHub Desktop.

Select an option

Save semihozkoroglu/724499 to your computer and use it in GitHub Desktop.
#include<stdio.h>
#include <unistd.h>
int main(void)
{
int i;
for (i = 0; i < 3; ++i)
fork();
printf("process...\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment