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