I asked a question here about a question I had regarding terms used in random number generation.
There I quote that PHP uses a term called "seed random numbers" or "random seed."
This is a reference to the mt_srand
and srand
functions which, according to the PHP Manual, prior to the 4.1
versions, it was mandatory to use these functions before invoking functions that generated random numbers ( mt_rand
and rand
).
And I get the impression that I have seen these "seed" functions in C
.
What is a random seed?
Why, prior to these versions, was it necessary to call a sower, and now is it no more?