» how to use rand()
Annotations:
- o create a 64-bit seed (TInt64) for Math::Rand() you can use the following:
TTime now;
now.HomeTime();
iSeed = now.Int64();
A Random number between 1 and 9 can be…

