{{keywords>wiki library source code example reference}} ===== ldexp ===== double ldexp(double , int exp); Returns x times 2 raised to n ===== C Sourcecode Example ===== compile in linux with: gcc ldexp.c -o ldexp **-lm** -Wall #include /* including standard library */ //#include /* uncomment this for Windows */ #include /* including math library */ int main ( void ) { printf ("4.2 raised to 2 is %f\n", ldexp(4.2, 2)); return 0; } ==== output ==== output: user@host:~$ ./ldexp 4.2 raised to 2 is 16.8000