// Function to initialize the random number generator according to // current numbers selected from the clock. After calling // randomize( ) once, you may call rand( ) to obtain a random // int in the range 0...RAND_MAX. #include // Provides srand( ) #include // Provides time( ) void randomize( ) { srand(time(0)); }