Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 편스토랑 우승상품
- 우분투
- 편스토랑
- dacon
- 백준
- leetcode
- 맥북
- AI 경진대회
- 프로그래머스
- github
- ChatGPT
- Docker
- 코로나19
- hackerrank
- ubuntu
- Baekjoon
- gs25
- 프로그래머스 파이썬
- Git
- 캐치카페
- Kaggle
- 데이콘
- SW Expert Academy
- 파이썬
- Real or Not? NLP with Disaster Tweets
- programmers
- 금융문자분석경진대회
- PYTHON
- 자연어처리
- 더현대서울 맛집
Archives
- Today
- Total
목록
반응형
gcc wait error (1)
반응형
솜씨좋은장씨

👨🏻💻 발생 에러 Abraham Silberschatz Operating System Concepts-10th-2018 으로 운영체제 스터디를 하면서 각 챕터에 나오는 C 코드들을 실제로 작성해서 실행 시켜보던 중에 # figure322_2.c #include #include #include int main() { pid_t pid; /* fork a child process */ pid = fork(); if (pid < 0) { /* error occurred */ fprintf(stderr, "Fork Failed"); return 1; } else if (pid == 0) { /* child process */ execlp("/bin/ls","ls",NULL); printf("LINE J"); ..
Programming/C | C++
2023. 3. 4. 18:58
반응형