Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- javascript
- memory
- English
- CS50
- 네트워크
- 코딩테스트
- Compiler
- programmers
- logic gate
- TCP
- network
- c++
- 이더넷
- Coding Test
- codingtest
- 병렬 통신
- 메모리
- C
- 프로그래밍
- string
- kakao입사
- DRAM
- 프로그래머스
- CS
- kakao coding test
- Kakao
- ram
- 논리게이트
- Ethernet
- broardcast
Archives
- Today
- Total
목록compiling (1)
Code Inside

# Week 2 주제 Compiling Debugging Memory Arrays Characters Strings Command-line arguments Applications # Compiling 지난 시간 우리는 C언어로 "hello, world" 를 screen 에 출력하는 법을 배웠다. : #include int main(void) { printf("hello, world\n"); } $ make hello ---> 명령어를 통해서 source code => machine code 로 변경(compiling) 한다. $ ./hello ---> 명령어를 통해서 실행(run) 한다. $ make ---> 는 'clang' 이라고 부르는 C 언어 전용 compiler 이다. hello.c 를 아래 ..
Computer Science
2022. 9. 17. 21:33