일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬
- 제로초
- 코어 자바스크립트
- 자바스크립트
- 2주 프로젝트
- 4주 프로젝트
- 리액트
- 타임어택
- 타입스크립트
- 리트코드
- 코드스테이츠
- 타입스크립트 올인원
- python
- 손에 익히며 배우는 네트워크 첫걸음
- Async
- LeetCode
- 백준
- codestates
- programmers
- 회고
- 리덕스
- til
- SQL 고득점 Kit
- 토익
- 정재남
- js
- 알고리즘
- 프로그래머스
Archives
- Today
- Total
목록CS (35)
Jerry
#3. 프로그램을 BUILD 하는 과정
Build는 아래와 같이 세 동작으로 이루어진다. 1. Preprocessing: 소스코드를 정리하고, Header 파일을 CPP 파일에 합치는 과정 2. Compile: 프로그래밍 언어로 작성된 1개의 CPP 파일을 0과 1 명령어로 바꾼다. 3. Linking: 여러 개의 CPP 파일들을 하나로 합치고 (CPP 파일이 여러 개 있는 경우), Library를 연결시키고, 실행 파일이 될 수 있도록 추가 코드를 붙여준다. source: 민코딩
CS/Terminology
2020. 11. 29. 23:53
#2. resolve
it means when you find out the answer, or find a resolution like you can resolve a crossword (find all the clues) or resolve a crime (find out who did it), or resolve a mathematical sum (3x+1=7) so in programming terms it means when you use some information to discover some other information - so not as simple as $x * $y but rather for instance when one variable points to another variable which ..
CS/Terminology
2020. 11. 29. 00:35