Hey guys I have a quick question about generating a random number with a range between 800-4000
I have seen a few examples that say I should do this
randomlocation = rand() %800 + 3200;
unsure if that would work or not. Also in my code do I only need one srand(unsigned int time (0)) or do I need to have the srand at every random number generator?