  srand
  Builtin Function



      SSyynnooppssiiss
        Seed the random number generator.

      SSyynnttaaxx
        srand ( )

        srand ( _A )

        srand ( _S_E_E_D )

      DDeessccrriippttiioonn
        Srand sets the seed for the random number generator.  srand()
        sets the seed to the original value (the last value given to
        srand, or the default value, 1).

        srand( "clock" )' sets the seed based upon the machines clock
        value. This provides users a way of picking a unique seed each
        time.

        Srand uses the RANLIB subroutine SETALL.


     SSeeee AAllssoo
        rand





































