1 2 int main() 3 { 4 int x = 3; 5 6 if (Fork() != 0) 7 printf("x=%d\n", ++x); 8 9 printf("x=%d\n", --x); 10 exit(0); 11 }