Tagged Questions
7
votes
3answers
619 views
Does floor() return something that's exactly representable?
In C89, floor() returns a double. Is the following guaranteed to work?
double d = floor(3.0 + 0.5);
int x = (int) d;
assert(x == 3);
My concern is that the result of floor might not be exactly ...