C언어 2 - 3 | 자료형 | short형과 int형| 2바이트와 4바이트
지난 포스트에 이어 자료형에 대한 내용이다. C는 정수값을 저장하는데 세 가지 자료형을 사용한다. 1바이트, 2바이트, 4바이트 크기의 자료형이다. 1바이트 자료형이 2-1의 char 형이다. * short int 형 short int 형은 2바이트이다. 2의 16승. 65536개 signed short int 범위: -32,768 ~ 32,767 unsigned short int 범위: 0 ~ 65,536 short int 범위 : signed short int 와 동일함 #include int main(void){ signed short int a1; signed short int a2; unsigned short int b1; unsigned short int b2; short int c1; sho..