C / math.h / ldexp
acos, asin, atan, atan2, ceil, cos, cosh, exp, fabs, floor, fmod, frexp, » ldexp, log, log10, modf, pow, sin, sinh, sqrt, tan, tanh,
Funcion: ldexp()
Sintaxis:
double ldexp(double x, int exp);

Descripcion: Multiplica un número de coma flotante y un entero con potencia a la 2. Puede producirse un error de recorrido.


Ejemplo:
#include <stdio.h>
#include <math.h>
 
int main()
{
   double x = 1.00;
   int exp = 2;
 
   printf( "ldexp( %f, %d ) = %f\n", x, exp, ldexp(x,exp) );
   return 0;
}

Librerias C

Librerias ANSI C
   string.hcstring
   math.hcmath
   stdio.hcstdio
   time.hctime
   stdlib.hcstdlib
   ctype.hcctype
   locale.hclocale
   signal.hcsignal
   setjmp.hcsetjmp

Librerias Borland
   conio.h
   graphics.h