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