출처 : http://mwultong.blogspot.com/2006/09/c-char-int-float-data-type-ranges.html 개인적으로 그때그때 보려고 퍼왔습니다.. ▶ char, unsigned char 1 byte (8비트)------------------------------------------------------char 의 최소값: -128char 의 최대값: 127 unsigned char 의 최소값: 0unsigned char 의 최대값: 255 (0xff) ▶ short, unsigned short 2 bytes (16비트)------------------------------------------------------short 의 최소값: -32768short 의 최..