vote up 5 vote down star

Is there a native c++ variable type that's "bigger" than a double?
float is 7
double is 15 (of course depending on the compiler)
Is there anything bigger that's native, or even non-native?

flag

67% accept rate
I usually think of float as 4 and double as 8, but you're referring to the approximate number of decimal digits, whereas I'm referring to the number of bytes used. – Jonathan Leffler Nov 2 '08 at 21:07

7 Answers

vote up 11 vote down check

C++ has long double, but there is no guarantee that it's any more precise than a plain double. On an x86 platform, usually double is 64 bits, and long double is either 64 or 80 bits (which gives you 19 significant figures, if I remember right).

Your mileage may vary, especially if you're not on x86.

link|flag
vote up -1 vote down

A long double typically only uses 10 bytes, but due to alignment may actually take up 12 or 16 (depending on the compiler and options) bytes in a structure.

The 10 byte long double provides a 64-bit mantissa; this is very convenient for when you want to store 64 bit integers in floating point without loss of precision.

link|flag
why was this downvoted? Is it wrong? – yar Jan 27 at 14:22
vote up 0 vote down

C++ has long double, but it's still quite limited. For good time try GNU's gmp library. You can set up numbers as big as you like, and it's quite fun and hackishly when you use gmp_add instead of a normal +. I'm sure there's a C++ wrapper somewhere.

link|flag
vote up 3 vote down

You can use GNU MP. Its floating-point functions have unlimited mantissa and 32-bit or 64-bit (depending on the native word size) exponent. It also comes with a C++ wrapper.

link|flag
vote up 1 vote down

There are also some various bigfloat/bigint libraries around for C++ that allow arbitrary precision math. There's this library on Microsoft Codeplex, but Googling will find you plenty of others.

link|flag
vote up 4 vote down

a treble!

(no, not really)

link|flag
typedef double treble;// :) – Cipher Nov 2 '08 at 21:10
Bit harsh to downmod obvious humour? Oh well, I suppose it's the risk I take – Gareth Nov 2 '08 at 21:37
probably just someone trying to get their Critic badge... – Mark Heath Nov 2 '08 at 21:40
And I am addicted to upvoting negative answers. Especially ones this good! – Ali A Nov 2 '08 at 22:20
vote up 1 vote down

long double, but it generally is still 15 places of precision too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.