|
김상면 님이 쓰신 글 :
: long double에 대해서 알고 싶습니다.
: 윤성우님은 double보다 크거나 같다고 하는데....
: 제가 지금까지 알고 있기로는 그렇지 않은것 같습니다.
:
: 고수님의 조언을 부탁 드립니다.
: 그럼
Tourbo C++ Explorer 도움말에는 다음과 같이 있군요..
Floating-point types
The representations and sets of values for the floating-point types are implementation dependent; that is, each implementation of C is free to define them. The compiler uses the IEEE floating-point formats.See the topic on ANSI implementation-specific.
float and double are 32- and 64-bit floating-point data types, respectively. long can be used with double to declare an 80-bit precision floating-point identifier.
|