CS代考计算机代写 #include
#include
#include
int main(void)
{
pid_t pid;
pid = fork();
if (pid > 0)
printf(“I’m the parent!
”);
else if (pid == 0)
printf(“I’m the child!
”);
else
printf(“I’m the initial process! ”
“But something went wrong…
”);
printf(“I’m here now, bye!
”);
return 0;
}