Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ehzawad
Created December 9, 2019 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehzawad/64aa95d10bb6915f989a93676e8a0e3c to your computer and use it in GitHub Desktop.
Save ehzawad/64aa95d10bb6915f989a93676e8a0e3c to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
fork();
fork();
fork();
fork();
printf("Hello PID = %d\n", getpid());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment