The value is 345678 three four five six seven eight
Hint: The rand function returns a pseudorandom integer in the range 0 to RAND_MAX (32767). You may test the following example:
#include <stdlib.h>
#include <time.h>
// Print 5 random numbers.
srand( (unsigned) time(NULL) );
for (int i = 0; i < 5; i++ )
cout << rand() << endl;