I use this random generator for numbers but it seems that this generator isn´t really random because it seems to generate the same "Random" sequence chain every time I restart the application.
Is there a better way to generate random numbers than this, that is more random ?
for( int i = 0; i < 200; i++ )
{
int RandomNum = rand() % 100;
}