Why do programs sometimes include the srand() function before the rand() function ?
Without srand(), the program makes the same sequence of numbers every time it is run.
Without srand(), the results of rand() are unpredictable.
srand() doubles the range of values than rand() can produce.
srand() turns the values of rand() into integers.





