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 | 31 |
Tags
- 알고리즘
- 턱걸이
- linux
- 운영체제
- c
- 리눅스
- 쉘
- TensorFlow
- 프로세스
- C++
- 코딩
- shell
- CV
- OpenCV
- 텐서플로우
- Computer Vision
- Windows10
- 프로그래밍
- 딥러닝
- 시스템프로그래밍
- 영상처리
- python
- 백준
- error
- 공부
- Windows 10
- 백준알고리즘
- 학습
- 회귀
- C언어
Archives
- Today
- Total
목록Limits (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