Tagged Questions

9
votes
4answers
537 views

Rounding differences on Windows vs Unix based system in sprintf

I have problem on UNIX based systems sprintf does not round up properly value. For example double tmp = 88888888888885.875 char out[512]; Thats 88,888,888,888,885.875 just to be easier on eyes. I ...
2
votes
1answer
83 views

R & C versions of function give differing results - rounding or operator error?

I have a block of R code that I rewrote in C, and the two versions provide different results. My belief is that this is due to rounding issues at the R level, i.e. multiple math operations are being ...
2
votes
1answer
106 views

RoundOffTest() seems to round UP and DOWN

void RoundOffTest(double number) { // What value would you pass to RoundOffTest() in order to get this output: // BEFORE number=1.785000 round=178.000000 (round down) // AFTER ...
1
vote
4answers
201 views

Error subtracting floating point numbers when passing through 0.0

The following program: #include <stdio.h> int main() { double val = 1.0; int i; for (i = 0; i < 10; i++) { val -= 0.2; printf("%g %s\n", val, (val == 0.0 ? ...