Here's a basic setup, forget do while syntax but this is what should happen.
do while(while some char is either a q or a r)
--roll dice 1 (use a random number generator to generate numbers between 1-6, should be able to google how to code one in C)
--roll dice 2 (use RNG from dice 1)
for(i = 0, i < 2, i++)
Setup cases from 1-6 depending on the number.
---print the statements in ascii
---this will run threw both dice
Make a scanf() function that takes in a char value, if its r or q, roll dice, if not loop should exit(use break)