why do both
std::cout << std::floor(1 - std::numeric_limits<float>::min());
std::cout << std::ceil(1 - std::numeric_limits<float>::min());
print 1 instead of 0?
why do both
std::cout << std::floor(1 - std::numeric_limits<float>::min());
std::cout << std::ceil(1 - std::numeric_limits<float>::min());
print 1 instead of 0?