I have the following method which generates a random number:
int random_number() //Random number generator
{
int x = rand() % 1000000 + 1; //Generate an integer between 1 and 1000000
return x;
}
The call to this method is used in a loop which iterates five times. The problem with this method is that it always seems to generate the same numbers when running the program several times. How can this be solved please?
srand()may come in handy. However, you may be depressed to take that modulo when/if you discover 1000000 is significantly larger than most implementation definitions of RAND_MAX. – WhozCraig Nov 7 '12 at 16:50