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
- 기계학습 기초
- 형변환
- Andrew Ng
- 단항연산자
- const
- standford University
- coursera
- Runtime constants
- CLion
- #define
- 코드블럭 오류
- sizeof()
- Greedy
- 홍정모님
- 연산자
- 이코테
- C++
- classification problem
- 기계학습
- 프로그래밍
- compile time constants
- Machine Learning
- #endif
- 나동빈님
- algorithm
- 학습 알고리즘
- 본즈앤올
- 코딩테스트
- regression problem
- decimal
Archives
- Today
- Total
목록void (1)
wellcome_공부일기
02.04. C++ | 무치형(Void Data Types) = No Type!
1. 무치형(Void Data Types)란? 2. 함수 내에서 void 알아보기 3. 유용한 void pointers(To Be Continued..) 무치형(Void Data Types)란? void는 데이터 타입 중에서 가장 설명하기 쉬운 것 중 하나입니다. 말 그대로, "void"는 타입이 없음을 의미하기 때문입니다. 결과적으로 변수는 void 타입으로 정의 될 수 없습니다. void value; // won't work, variables can't be defined with a void type - 메모리를 차지하지 않기 때문에 변수 선언이 불가능 합니다. 함수 내에서 void 알아보기 메모리를 차지하지 않는 void는 일반적으로 다른 맥락에서 사용됩니다.(함수, void pointers, ..
프로그래밍/C++
2020. 5. 5. 02:44