C++ 자료형 및 Byte 개념
int main()
{
// 자료형 (크기 단위, byte - 메모리 단위) Data Type
// 정수형: char(1), short(2), int(4), long(4), long long(8)
// 실수형: float(4), double(8)
int i = 0;
// i 라는 정수형을 선언하고 i의 크기는 4 byte이다.
unsigned char c = 0;
// unsigned = 양수...
jingood.hashnode.dev2 min read