C언어 자료형
C언어 기본 자료형 - linux 환경 /usr/include/limits.h에 자세히 나와있다.
정수형
char 1 byte
short 2 bytes
int 4 or 2 bytes
long 4 or 8 bytes
long long 8 bytes
부동 소수점형
float 4 bytes
double 8 bytes
void 함수에 입력 값이 없을 때
함수에 return 값이 없을 때
void*
정수형
char 1 byte
short 2 bytes
int 4 or 2 bytes
long 4 or 8 bytes
long long 8 bytes
부동 소수점형
float 4 bytes
double 8 bytes
void 함수에 입력 값이 없을 때
함수에 return 값이 없을 때
void*
Comments
Post a Comment