srand(GetTickCount())?

Started by
2 comments, last by Mashew 16 years, 3 months ago
I keep seeing srand(GetTickCount()); in example code and I can't find what it is used for. I know it is for random numbers but, what does it do for the program? It really makes no sense. (I'm not using a book.)
Advertisement
Good question.
srand seeds the random number generator. Otherwise, if you don't seed the random number generator, you end up with same sequence of "random" numbers, every run.

You'll want to seed (srand) random number generator with a "random" number, such as with result of timeGetTime(), that returns elapsed time in milliseconds since system boot.
Thank you VHL. Thats all I wanted to know.

This topic is closed to new replies.

Advertisement