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?

The Borland C++ compiler in C++Builder 6 supports the following types with
the given sizes

bits        type
32        int
32        long (or long int)
32        unsigned long (or long unsigned)
64        long long (or long long int)
64        unsigned long long (or long long unsigned)
32        float
64        double
80        long double



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

Reply via email to