srand
srand expr
- Sets the random number seed for the
rand
operator so thatrand
can produce a different sequence each time you run your program. If expr is omitted, a default seed is used that is a mix of difficult-to-predict, system-dependent values. If you callrand
and you haven't calledsrand
yet,rand
callssrand
with the default seed.