+ 2
Random numbers are not truly random, but are a pattern based on a starting point. Given the same starting point, the numbers will always be the same. If you don't call srand, the starting point is 0. Using 98 in srand is guarenteed to return the same value and sequence. The only way to get a different number is to randomly set the starting point. The normal method to do that is use the current time.



