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
- regression problem
- standford University
- Greedy
- const
- 코딩테스트
- sizeof()
- CLion
- 본즈앤올
- 기계학습
- coursera
- 프로그래밍
- 학습 알고리즘
- 연산자
- compile time constants
- 나동빈님
- algorithm
- Machine Learning
- 홍정모님
- 이코테
- Andrew Ng
- 기계학습 기초
- decimal
- 코드블럭 오류
- #define
- classification problem
- 형변환
- Runtime constants
- 단항연산자
- #endif
- C++
Archives
- Today
- Total
목록#else (1)
wellcome_공부일기
01.10. C++| 전처리기(Preprocessor)란?
1. 전처리기(Preprocessor)란? 2. 대표적인 전처리기(Preprocessor) 알아보기 - The #define Preprocessor - Function-Like Macros - Conditional Compilation 전처리기(Preprocessor)란? - 전처리기(Preprocessor)는 실제 컴파일이 시작되기 전에 컴파일러에게 정보를 사전 처리하도록 지시하는 지시사항이다. - 모든 전처리기 지시문(Preprocessor Directives)은 #로 시작하며, 전처리기 지시문 앞에 공백 문자만 나타날 수 있다. - 전처리기 지시문은 C++ 문장이 아니므로 세미콜론(;)으로 끝나지 않는다. - 이미 모든 예에서 #include 명령을 보았듯이, 이 매크로는 헤더 파일을 소스 파일에 ..
프로그래밍/C++
2020. 4. 29. 22:48