c언어 #6
자료형 크기 값의 범위 char 1 byte -128~127, 0~255 unsigned char 1 byte 0~255 signed char 1 byte -128~127 int 2 or 4 byte -32,768~32,767 or -2,147,483,648 ~ 2,147,483,647 unsigned int 2 or 4 byte 0~65,535 or 0 ~ 4,294,967,295 short 2 byte -32,768 ~ 32,767 unsigned short 2 byte 0 ~ 65,535 long 4 byte -2,147,483,648 ~ 2,147,483,647 unsigned long 4 byte 0 ~ 4,294,967,295 char 크기는 -128 ~ 127까지다. 근데 cNum1에는 범위..
2020.01.13