#1-1. 자료형의 크기
2023. 8. 30.
64bit 환경에서 데이터 자료형의 크기와 범위는 다음과 같다. 자료형 크기 범위 논리형 bool 1 byte (8 bit) 0 ~ 1 void void - - null pointer decltype (nullptr) - - 문자형 (signed) char 1 byte (8 bit) -128 ~ 127 unsigned char 1 byte (8 bit) 0 ~ 255 정수형 (signed) short (int) 2 byte (16 bit) -32,768 ~ 32,767 unsigned short (int) 2 byte (16 bit) 0 ~ 65,535 (signed) int 4 byte (32 bit) -2,147,483,648 ~ 2,147,483,647 unsigned int 4 byte (32 b..