일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 프로그래머스 파이썬
- AI 경진대회
- gs25
- 맥북
- 편스토랑 우승상품
- 금융문자분석경진대회
- 데이콘
- 백준
- programmers
- dacon
- 코로나19
- Real or Not? NLP with Disaster Tweets
- 우분투
- hackerrank
- Docker
- ubuntu
- PYTHON
- Kaggle
- 파이썬
- Git
- ChatGPT
- SW Expert Academy
- leetcode
- 자연어처리
- github
- 프로그래머스
- Baekjoon
- 더현대서울 맛집
- 캐치카페
- 편스토랑
- Today
- Total
목록
반응형
C (4)
솜씨좋은장씨
👨🏻💻 발생 에러 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"); ..
👨🏻💻 gcc 설치하기 2023.03.01 - [Programming/C | C++] - [GCC] macOS 에 gcc 컴파일러 설치하는 방법! [GCC] macOS 에 gcc 컴파일러 설치하는 방법! 👨🏻💻 설치 방법! macOS 에서 gcc 컴파일러를 설치하는 방법은 정말 간단합니다. $ xcode-select --install xcode-select: note: install requested for command line developer tools 터미널을 열고 xcode-select --install 명령 somjang.tistory.com 👨🏻💻 테스트에 사용할 c 언어로 작성한 파일 만들기 # hello_world.c #include int main(void) { printf("%s..
배열과 원형 연결리스트를 사용하여 해결한 케이크문제입니다.사진을 누르시면 크게 볼 수 있습니다.