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
- 연산자
- Runtime constants
- classification problem
- compile time constants
- decimal
- 학습 알고리즘
- coursera
- 코딩테스트
- sizeof()
- algorithm
- #endif
- 형변환
- Machine Learning
- 프로그래밍
- 기계학습
- #define
- 이코테
- 본즈앤올
- 코드블럭 오류
- 기계학습 기초
- 홍정모님
- Greedy
- 단항연산자
- CLion
- const
- Andrew Ng
- standford University
- C++
- regression problem
- 나동빈님
Archives
- Today
- Total
목록헤더가드 (1)
wellcome_공부일기

1. 헤더가드(Header Guard)란? 2. 헤더가드(Header Guard)가 필요한 이유 2. CLion에서 헤더가드(Header Guard) 사용법 헤더가드(Header Guard)란? 헤더가드는 헤더 파일내의 작은 코드로, 한번 이상 헤더 파일의 내용이 포함되지 않도록 이를 방지하는 역할을 합니다. 헤더가드는 전처리기의 사용을 통해 실행이 되어집니다. C/C++ 전처리기는 모두 #이라는 문자로 시작을 합니다. ex) #include, #define -http://faculty.cs.niu.edu 헤더가드(Header Guard)가 필요한 이유 팀 프로젝트가 시작되고 프로그램이 복잡해지면 헤더파일(Header File)을 파일 내에 많이 추가하면서 중복으로 올릴 수 가 있습니다. 예를 들어 2번..
CLion 사용법
2020. 4. 27. 20:40