#include #include using namespace cln; int main (void) { cl_RA two = 2, three = 3, val; val = two/three; std::cout << val << std::endl; float f = float_approx (val); std::cout << f << std::endl; double d = double_approx (val); std::cout << d << std::endl; return 0; }