home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / math / ldexp.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  288 b   |  20 lines

  1. @node ldexp, math
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <math.h>
  6.  
  7. double ldexp(double val, int exp);
  8. @end example
  9.  
  10. @subheading Return Value
  11.  
  12. This function returns @var{val} * 2 ** @var{exp}.
  13.  
  14. @subheading Example
  15.  
  16. @example
  17. ldexp(3.5,4) == 3.5 * 16 == 56.0
  18. @end example
  19.  
  20.