자료형32bit OS64bit OSint4 Byte (32 bit)4 Byteshort2 Byte (16 bit)2 Byte long4 Byte 8 Byte (64 bit)longlong8 Byte (64 bit)8 Bytepointer(*)4 Byte 8 Byte long double12 Byte (96 bit)16 Byte (128 bit)size_t, ssize_t4 Byte 8 Byte 자료형 사이즈 출력해보기#include #include #include int main(void){ printf("### 1 Byte = 8 bit ###\n"); printf("int : %d byte\n",sizeof(int)); printf("unsigned int : %d byte\n",..