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
- Greedy
- 학습 알고리즘
- Machine Learning
- CLion
- Andrew Ng
- 코드블럭 오류
- 단항연산자
- C++
- regression problem
- 코딩테스트
- 홍정모님
- Runtime constants
- 프로그래밍
- 본즈앤올
- #endif
- const
- 기계학습 기초
- standford University
- classification problem
- 이코테
- 나동빈님
- 형변환
- sizeof()
- 연산자
- 기계학습
- decimal
- #define
- compile time constants
- coursera
- algorithm
Archives
- Today
- Total
목록const (2)
wellcome_공부일기
C++ | 03.04 sizeof, 쉼표 그리고 조건(부) 연산자
1. 사이즈 연산자(Sizeof operator) 2. 쉼표 연산자(Comma operator) 3. 조건부 연산자(Conditional operator) 사이즈 연산자(Sizeof operator) #include using namespace std; int main() { // 4byte = 32bit float a; cout
프로그래밍/C++
2020. 5. 16. 21:13
C++ | 02.11 Runtime vs Compile time constants
1. Runtime constants 2. Compile time constants 3. constexpr Runtime vs compile time constants 상수에는 literal constants와 symbolic constants로 두가지 종류가 나뉘어져 있습니다. literal constants은 코드에 직접적으로 삽입된 값을 말하며, symbolic constants는 변하지 않는 고정된 값을 나타냅니다. 하지만, 상수(constants)를 사실상 Runtime constants와 compile time constants로 나뉠 수 있습니다. Runtime과 Compile time은 각각 다른 단계의 소프트웨어 개발을 가르키는 프로그래밍 용어입니다. Compile time은 우리가 입력..
프로그래밍/C++
2020. 5. 12. 18:55