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
- algorithm
- 프로그래밍
- C++
- compile time constants
- decimal
- Andrew Ng
- 나동빈님
- Machine Learning
- 단항연산자
- 코딩테스트
- 학습 알고리즘
- regression problem
- 이코테
- classification problem
- coursera
- #define
- 본즈앤올
- 형변환
- CLion
- 연산자
- standford University
- 기계학습
- Runtime constants
- 기계학습 기초
- 코드블럭 오류
- Greedy
- #endif
- 홍정모님
- const
- sizeof()
Archives
- Today
- Total
목록기호 상수(symbolic constants) (1)
wellcome_공부일기
C++ | 02.10 기호 상수(Symbolic constants)
1. Const variables 2. 기호 상수(symbolic constants)란? 3. 기호 상수(symbolic constants)의 나쁜 사용 예 4. 기호 상수(symbolic constants)의 좋은 사용 예 5. Using symbolic constants throughout a multi-file program(To be continued...) Const variables란? 그 동안, 우리가 봐온 모든 변수들은 non-constant였습니다. 이 말은 모든 변수들의 값이 언제든지 바뀔 수 있음을 말합니다. int x { 4 }; // initialize x with the value of 4 x = 5; // change value of x to 5 하지만, 때때로 변하지 않는 변..
프로그래밍/C++
2020. 5. 11. 07:26