I\'m just trying to have simply RndInt(limit) function that will return random numbers with a limit as limit.
cout << \"Enter higher limit of random ra
Do not call srand() every time you want a random number. Call srand() once at the start of your program, and then call rand() for each number.
srand()
rand()