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
- C
- 메모리
- logic gate
- English
- 네트워크
- 프로그래밍
- ram
- 코딩테스트
- memory
- Compiler
- Kakao
- 병렬 통신
- programmers
- broardcast
- Coding Test
- CS
- kakao입사
- 이더넷
- Ethernet
- network
- DRAM
- TCP
- c++
- kakao coding test
- 논리게이트
- javascript
- codingtest
- 프로그래머스
- string
- CS50
Archives
- Today
- Total
목록데이터형식 (1)
Code Inside
C/C++ 데이터 타입(DataType) 범위
DataType Byte Range int 4 -2,147,483,648 ≤ x ≤ 2,147,483,647 unsigned int 4 0 ≤ x ≤ 4,294,967,295 char 1 -128 ≤ x ≤ 127 unsigned char 1 0 ≤ x ≤ 255 long long 8 -9,223,372,036,854,775,808 ≤ x ≤ 9,223,372,036,854,775,807 unsigned long long 8 0 ≤ x ≤ 18,446,744,073,709,551,615 bool 1 true / false float 4 ±3.4 * 10^(-37) ≤ x ≤ ±3.4 * 10^(-38) double 8 ±1.7 * 10^(-307) ≤ x ≤ ±1.7 * 10^(-308) int 는 4 ..
C++
2022. 9. 20. 19:41