下面的程序执行输出几个hello?
#include<stdio.h> #include <unistd.h> int main( ) { fork( ); fork( ); fork( ); printf("hello\n"); return 0; }