변수의 종류
정수형 타입 할당 메모리 크기 표현범위 short 2 Bytes -32,768 ~ 32,767 unsigned short 2 Bytes 0 ~ 65,535 int 2 Bytes -2,147,483,648 ~ 2,147,483,647 unsigned int 2 Bytes 0 ~ 4,294,967,295 long 4 Bytes 2,147,483,648 ~ 2,147,483,647 unsigned long 4 Bytes 0 ~ 4,294,967,295 long long 8 Bytes –9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807 unsigned long long 8 Bytes 0 ~ 18,446,744,073,709,551,615 실수형 타입 할당 메모리 크..