#include <math.h>
double ldexp (double x, int exp);
double ldexp
The ldexp function multiplies a floating point number by an integral power of 2. A range error may occur.
The ldexp function returns the value of x times 2 raised to the power exp.
None