Reference no: EM132206613
Write a modular C program to accomplish the following:
Play the dice game of Craps using a random number generator to simulate the roll of the dice, the code for the rolling of the dice should take place in a user written modules.
You must generate two random numbers, 1 - 6, for the dice roll, DO NOT generate a single number from 1 to 12.
The rules of the game are as follows: 1st roll, a score of 7 or 11 wins. 1st roll, a score of 2, 3, or 12 loses.
1st roll, any number other than those listed above becomes the goal number. You must keep rolling until you roll the goal number again.
If a 7 is rolled before the goal number, you lose. Make the game continuous, until you tell it to stop. If you choose to place fictitious bets you can bet the same amount, or change you bet after each win or loss. Print the results of each roll and the running total of winnings or loses.
Be sure to properly document your source code.