Data Types in C language
C 언어 데이터 타입 https://www.tutorialspoint.com/cprogramming/c_data_types.htm 숫자 데이터 타입의 종류 데이터 타입 메모리 할당 크기 ( bytes ) 숫자 범위 char 1 -128 ~ 127 unsigned char 1 0 ~ 255 short 2 -32,768 ~ 32,767 unsigned short 2 0 to 65,535 int 4 -2,147,483,648 ~ 2,147,483,647 unsigned int 4 0 ~ 4,294,967,295 long 4 -2,147,483,648 ~ 2,147,483,647 unsigned long 4 0 ~ 4,294,967,295 float 4 소수점 이하 최대 6자리까지 double 8 소수점 이하 ..
더보기