main()

{

  int pid;

  pid=fork();

  printf("%d \n", pid);

}


fork가 성공했을때 이거 출력값이 어떻게 되나요 ㅠ