contents   index   previous   next



Clib.rand()

syntax:

Clib.rand()

return:

number - random number between 0 and RAND_MAX, inclusive.

 

description:

This method returns pseudo-random number between 0 and RAND_MAX, inclusive. The sequence of pseudo-random numbers is affected by the initial generator seed and by earlier calls to Clib.rand(). See Clib.srand() for information about the initial generator seed.

 

see:

Clib.srand(), RAND_MAX

 

 


Clib.sin()