2
votes
How can I get rid of the warning with rand()? (C++)
To get rid of the warning you should use a static cast to an unsigned integer.
srand(static_cast<unsigned int>(time(0)));
On a related note, the results of r …
