티스토리 뷰
1. C++ Value type |
Group |
Type names* |
Notes on size / precision |
Character types |
char |
Exactly one byte in size. At least 8 bits. |
char16_t |
Not smaller than char. At least 16 bits. | |
char32_t |
Not smaller than char16_t. At least 32 bits. | |
wchar_t |
Can represent the largest supported character set. | |
Integer types (signed) |
signed char |
Same size as char. At least 8 bits. |
signed short int |
Not smaller than char. At least 16 bits. | |
signed int |
Not smaller than short. At least 16 bits. | |
signed long int |
Not smaller than int. At least 32 bits. | |
signed long long int |
Not smaller than long. At least 64 bits. | |
Integer types (unsigned) |
unsigned char |
(same size as their signed counterparts) |
unsigned short int | ||
unsigned int | ||
unsigned long int | ||
unsigned long long int | ||
Floating-point types |
float |
|
double |
Precision not less than float | |
long double |
Precision not less than double | |
Boolean type |
bool |
|
Void type |
void |
no storage |
Null pointer |
decltype(nullptr) |
|
- ref : http://www.cplusplus.com/doc/tutorial/variables/
2. stdint.h |
signed type |
unsigned type |
description |
intmax_t |
uintmax_t |
Integer type with the maximum width supported. |
int8_t |
uint8_t |
Integer type with a width of exactly 8, 16, 32, or 64 bits. |
int16_t |
uint16_t | |
int32_t |
uint32_t | |
int64_t |
uint64_t | |
int_least8_t |
uint_least8_t |
Integer type with a minimum of 8, 16, 32, or 64 bits. |
int_least16_t |
uint_least16_t | |
int_least32_t |
uint_least32_t | |
int_least64_t |
uint_least64_t | |
int_fast8_t |
uint_fast8_t |
Integer type with a minimum of 8, 16, 32, or 64 bits. |
int_fast16_t |
uint_fast16_t | |
int_fast32_t |
uint_fast32_t | |
int_fast64_t |
uint_fast64_t | |
intptr_t |
uintptr_t |
Integer type capable of holding a value converted from a void pointer and then be converted back to that type with a value that compares equal to the original pointer. |
- ref : http://www.cplusplus.com/reference/cstdint/?kw=stdint.h
3. limits.h |
'SoftWare > C & C++' 카테고리의 다른 글
파일 내용 일치 비교 소스코드 (0) | 2017.07.06 |
---|---|
[C 언어] Console Progress Bar 만들기 - 윈도우 용 (1) | 2017.03.23 |
[C언어]파일 입출력 - fopen & open (0) | 2016.03.30 |
[C언어] 구조체 포인터 배열(Array of struct with pointer) (2) | 2016.03.29 |
[C언어]String.h - strcpy(문자열 복사), strcmp(문자열 비교), strcat(문자열 결합) (0) | 2016.03.29 |
- Total
- Today
- Yesterday
- 서버
- 파일입출력
- c언어
- 인텐트
- java url
- 안드로이드
- 포켓몬 고
- counter
- 유전
- 테라펀딩 #투게더펀딩 #P2P투자 #부동산 소액 투자 #카카오 #토스
- Service
- 파일 입출력
- 포켓몬 Go
- vim 설치
- android
- java 파일 입출력
- vim
- 유전 알고리즘
- Notification
- jad
- Res
- 5582
- php
- Java Decompiler
- 카운터
- java
- 자바 입출력
- 알고리즘
- LISTVIEW
- 아두이노
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |