Question: Write a C program that simulates a slot machine at a casino playing 12 spins. You can assume that there are 3 columns and 14

Write a C program that simulates a slot machine at a casino playing 12 spins. You can assume that there are 3 columns and 14 symbols with internal representation as follows (using one main function) Symbol Internal Storage

Diamond 0

Heart 1

Apple 2

Orange 3

Lime 4

Sun 5

Mountain 6

Mickey 7

Banana 8

Cherry 9

Garfield 10

Television 11

Coolers 12

Lemonade 13

Your program should randomly generate 12 spins and print out the results for the 12 spins. After printing all the spins your program should also print the number of spins in which the user got 2 or more same symbols. Example run: Mickey Mickey Coolers Apple Orange Diamond Lime Heart Sun Mountain Coolers Mountain You have 2 or more same symbols in 2 spins. 1) Name your program spins.c.

2) Use rand() function to generate a random number. With the help of rand () function, a number in range of lower to upper can be generated as num = (rand() % (upper lower + 1)) + lower

3) rand() function generates the same sequence again and again every time the program runs. Use srand() function with time to set seed for rand() function so it generates different sequences of random numbers. Include the following statement at the beginning of the main function: srand(time(NULL));

4) To use the rand() and time function, you need to include and .

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!