To follow up -
There's no floating point representation in CVI greater than 64 bits. See IEEE 754 in the wikipedia: http://en.wikipedia.org/wiki/IEEE_754
for info on the fp formats. On an Intel math co, internally double precision is handled as 80 bits, so you get 16 "guard bits" during computations that helps preserve precision.
There are several arbitrary precision floating point packages available - you can get as much precision as you want and can afford. Java has the "big decimal" class for this - and most math packages have it - Maple does I know.
Wiki says "BigDigits" is a c library for arbitrary-precision arithmetic, also MAPM, MPFR, CLN, decNumber, etc.
http://en.wikipedia.org/wiki/Bignum
Menchar