Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

fork system call

#include <stdio.h>
#include <unistd.h>

int main()
{
	fork();
	fork();
	fork();
	puts("Hi");
	return 0;
}

// Output:
// Hi
// Hi
// Hi
// Hi
// Hi
// Hi
// Hi
// Hi
Source by github.com #
 
PREVIOUS NEXT
Tagged: #fork #system #call
ADD COMMENT
Topic
Name
2+8 =