int main(){ pid_t pid = fork(); if (pid == 0) { printf("HC: hello from child\n"); exit(17); } else { int child_status; printf("HP: hello from parent\n"); ...
確定! 回上一頁