We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi fellow programming gurus.
I've come up against a very hard problem and i want some advise.
My problem is that i need to generate a series of random numbers. I know that they are not really random (the term is deterministic) but i have created a really clever idea to improve the starting point of the sequence. I will seed the generator with a random number.
like this
<pree>
srand ( rand () ) ;
but it is not working properly. Can you help me fix it?