D. Richard Hipp wrote:

In MSVC and in Borland, a signed 64-bit integer is __int64, right?
What's an unsigned 64-bit integer on those compilers?

Do MSVC and Borland support the "long double" type?

64-bit integer in MSVC 6.0: Use "__int64" for signed and "unsigned __int64" for unsigned.

MSVC 2003 accepts "long long", "long long int" or "__int64" for a signed 64 bit-integer.

Both MSVC 6.0 and 2003 accept "long double" but " The representation of long double and double is identical. However, long double and double are separate types.". Therefore both are 64 bits.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to