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

1) C C 언어를 배우는 것이 목표가 아니라 Program 을 배우기 위해 C를 알아보자. When we evaluate the quality of our code, we might consider the following aspects: correctness, or whether our code solves our problem correctly design, or how well-written our code is, based on how efficient and readable it is style, or how well-formatted our code is visually Our first program in C that simply prints “hello, world” to the scre..