#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main() {
// make two process which run same
// program after this instruction
fork();
// this will print hello world twice
printf("Hello world!
");
return 0;
}