该程序无法在 gcc 上运行……并给出链接器错误……即未定义的 fork 引用……
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
int main()
{
int a=10;
if (a==10 && fork())
printf("hello");
else
printf("world");
system("pause");
return 0;
}