Seed Selection
nsrand(time(NULL));
nThe argument to the srand() is a call to the time() with a NULL argument.
nWith this argument, time() reads the computer’s internal clock time in seconds.
nsrand() then uses this time, converted to an unsigned integer to initialize the random number generator function rand().
nRandom numbers will differ each time the program is executed
nComputer time is different