#include<stdio.h>#include<stdlib.h>#include<string.h>#include<unistd.h>intmain(int argc, char* argv[]){
int id = fork();
if (id != 0) {
fork();
}
printf("Hello world\n");
return0;
}
This website uses cookies to ensure you get the best experience on our website. Learn more