blob: 8b549a10faf7d6fe2423d6d77ce3ce72a1fac03f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("hello world...");
// fflush(stdout);
fork();
fork();
fork();
}
|