C++ Programming/Code/Standard C Library/Functions/ldexp
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.
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/ldexp%20