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