I have int x
I would like to fill it with a randomly generated number between lets say 6 and 10
I know that x = 1 + rand() % maxRange; will limit the maximum range but i would also like to limit the minimum range.
How do i put a minRange on the rand() feature
any help would be great
Thanks