Hello, Is there a way to have real different random numbers? For the moment, I'm using the rand() function, but this one is generating the same sequence over and over again. I have to unpower my application to have a new series of random numbers. I'm now 'experimenting' (what's in a word...) with the following construction:
. . . srand( rand() ); . . . RandomNumber = ( rand() / 256 ); . . .
"Typical sources include timing mechanical and user input events." Or electronic noise; eg, http://www.8052.com/forum/read.phtml?id=23959 (it'd be worth reviewing the whole of that thread!)