Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CV
- 프로세스
- python
- C++
- Windows10
- error
- 백준알고리즘
- c
- 턱걸이
- C언어
- 딥러닝
- Computer Vision
- 시스템프로그래밍
- 학습
- OpenCV
- 리눅스
- 영상처리
- 공부
- 텐서플로우
- TensorFlow
- shell
- 알고리즘
- 운영체제
- 프로그래밍
- 코딩
- 백준
- 회귀
- 쉘
- Windows 10
- linux
Archives
- Today
- Total
목록범위 (1)
줘이리의 인생적기

자료형의 크기와 범위를 알아보도록 하겠습니다. 크기는 sizeof로 알 수 있고, 범위는 numeric_limits를 통해 알 수 있습니다. numeric_limits는 #include limits를 포함해야 사용할 수 있습니다. 예제를 통해 정수형부터 알아보도록 하겠습니다. #include #include using namespace std; int main() { int a; short a_1; long a_2; long long a_3; cout
공부/C++
2021. 9. 17. 23:00