Although it is not an answer to your exact question, it is very relevant to your program –
I read in Stanford CS106 Course Reader available in PDF that int num = rand() % 6 + 1; is not the right way to get a random number between 1 and 6.
I quote the Course Reader:
The problem here is that rand() guarantees only that the value it produces is uniformly distributed over the range from 0 to RAND_MAX. There is, however, no guarantee that the remainders on division by six will be at all random.
They also explain how to do this correctly, which involves four different steps (Normalisation - Scaling - Translation - Conversion).
I thought since you are trying to get your head round the random numbers generator, you might want to know this.
Happy coding!