c:math:ldexp From C++ Reference previous page next page ldexp Syntax: #include <cmath> double ldexp( double num, int exp ); The ldexp() function returns num * (2 ^ exp). And get this: if an overflow occurs, HUGE_VAL is returned. Related Topics: frexp, modf previous page start next page