이 C 프로그램을 실행할 수없는 이유는 무엇입니까?
첫 번째 "프로세스"프로그램을 실행하려고하는데 다음 오류가 발생합니다. ./fork.c: line 4: syntax error near unexpected token `(' ./fork.c: line 4: `int main()' 코드가 올바른지 확신합니다. #include <sys/types.h> #include <stdio.h> int main() { pid_t pid; printf("Hello fork()\n"); switch(pid=fork()) { case -1: printf("Error by fork().....\n"); exit(0); case 0: printf("I'm the child process \n"); …