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);
long doublemight change the accessed value in a wrong way – Eregrith Feb 6 '12 at 14:18long doublewould cause a problem, casting todoublewould 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