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

  1. @node rand, random number
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <stdlib.h>
  6.  
  7. int rand(void);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. Returns a pseudo-random number from zero to @code{RAND_MAX}. 
  13.  
  14. @subheading Return Value
  15.  
  16. The number.
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. /* random pause */
  22. for (i=rand(); i; i--);
  23. @end example
  24.  
  25.