Следующий код выводит случайное число каждую секунду: < /p>
int main ()
{
srand(time(NULL)); // Seeds number generator with execution time.
while (true)
{
int rawRand = rand();
std::cout
Подробнее здесь: https://stackoverflow.com/questions/419 ... -from-rand