Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to understand why using '/' with long double in the following way leads to a 0.000000 value while the same code with double does not

double d = (double)total_results / (double)total_points;

Gives the value 0.785403 but

long double d = (long double)total_results / (long double)total_points;

Gives the value 0.000000. I am trying to get the most accurate value for 'total_results / total_points'

EDIT: In the end the error was simply that I was outputting it using '%f' instead of '%Lf'

Before

printf("Running on %d thread(s), results is %f.\n", NUM_THREADS, d);    

After

printf("Running on %d thread(s), results is %Lf.\n", NUM_THREADS, d); 
share|improve this question
what platform/compiler? – CharlesB Feb 6 '12 at 14:17
1  
What are the types of total_results and total_points ? Casting them to long double might change the accessed value in a wrong way – Eregrith Feb 6 '12 at 14:18
It works for me in C++ – juergen d Feb 6 '12 at 14:20
3  
Ernest Friedman-Hill's answer indicates you should, with problems that can, always post a minimal working program that exhibits your problem. – Dan Fego Feb 6 '12 at 14:22
@Eregrith If casting to long double would cause a problem, casting to double would cause even bigger a problem! Let's just assume it's OK; that total_result and total_points are numbers. – Mr Lister Feb 6 '12 at 15:32
show 1 more comment

1 Answer

up vote 15 down vote accepted

This is obviously just a guess, but how are you outputting the results? If you're using printf with the wrong field specifier, printing an erroneous zero is definitely a possible result. Using g++, I tried "%lf" and got "-2.0000" when I should have gotten "0.75". The right specifier is "%Lf", with a capital L.

share|improve this answer
Yes, or %llf, that works too. (under gcc 4.3, Linux at least) – Mr Lister Feb 6 '12 at 14:21
This was the problem. I was using '%f'. Thank you – Shane Feb 6 '12 at 14:25
1  
@MrLister: That comment is not helpful; it's just teaching OP the wrong way to do something and seemingly have it work, when the right answer has already been given. – R.. Feb 6 '12 at 14:26
@R.. Why is %llf the wrong way? Enlighten me! – Mr Lister Feb 6 '12 at 14:32
3  
@MrLister because it's not mandated by the standard that %llf can be used to print long doubles, the standard specifies the L modifier, so anything else may work on some compilers but is non-portable. – Daniel Fischer Feb 6 '12 at 14:47
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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