So, I'm trying to calculate a certain value to a rather large precision. The expression in C is:
long double t = 2.0L+.2L*(sp)+s.missRate*50L;
my result is: 11.575345
But the 'real' result is: 11.575345222971968
I'm using long doubles, which are the largest primitive type AFAIK. I shouldn't have to use any precision libraries to do this. So, what C type has this kind of precision?
doubleshould have 15-16 significant digits and your result only has 8. – dan04 Nov 9 '10 at 23:34