336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
자료형의 종류와 범위
구분자료형크기(byte)범위
문자형

char

1 byte

   -128 ~ 127

unsigned char

1 byte

   0 ~ 255
정수형

__int8

1 byte

   -128 ~ 127

__int16

2 byte

   -32,768 to 32,767

unsigned int

2 byte

   -32,768 to 32,767

short (int)

2 byte

   -32,768 to 32,767

unsigned short (int)

2 byte

   0 ~ 65,535

__int32

4 byte

   -2,147,483,648 ~ 2,147,483,647

int

4 byte

   -2,147,483,648 ~ 2,147,483,647

unsigned int

4 byte

   0 ~ 4,294,967,295

long (int)

4 byte

   -2,147,483,648 ~ 2,147,483,647

unsigned long (int)

4 byte

   -2,147,483,648 ~ 2,147,483,647

__int64

8 byte

   -9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807
실수형

float

4 byte

   3.4E +/- 38 (7 digits)

double

8 byte

   1.7E +/- 308 (15 digits)

long double

8 byte

   1.2E +/- 4932 (19 digits)


참고 : limits.h

'Programming > C / C++' 카테고리의 다른 글

STL without warnings  (0) 2015.02.07
구조체 초기화  (0) 2015.02.07
__IN & __OUT  (0) 2015.02.07
strncpy 의 함정  (0) 2015.02.07
XOR Swap  (0) 2015.02.07
Posted by 역시인생한방
,