스터디-공부/운영체제 컨셉7 3장 프로세스 연습문제 공룡책 (Operating System Concepts) 10th 개인적인 생각이므로 틀린 답변일 수 있습니다. 3.1 아래 표시된 프로그램을 이용하여 LINE A에서 출력되는 내용을 설명하라. #include #include #include int value = 5; int main() { pid_t pid; pid = fork(); if (pid == 0) { /* child process */ value += 15; return 0; } else if (pid > 0) { /* parent process */ wait(NULL); printf("PARENT: value = %d", value); /* LINE A */ return 0; } } 20 3.2 최초의 부모 프로세스를 포함하여 아래에 표시.. 2023. 5. 9. 이전 1 2 다음