Question: Write a C-programming: Can someone please modify my code below and help with the following problem. 1. Create a separate function that prompts a user

Write a C-programming:

Can someone please modify my code below and help with the following problem.

1. Create a separate function that prompts a user for the number of times they would like to roll an 8 sided die.

2. Create a separate function that rolls the die using random number generation.

3. Create a separate function that output the results.

DO NOT use any global variables and the main function should only have function calls and variables. Do not call a function from another function. The output should exactly look like the sample output.

Use Arrays for this assignment.

//sample output

How many times would you like to roll the 8 sided die? 50

You had:

10 ones

5 twos

4 threes

6 fours

5 fives

7 sixes

3 sevens

10 eights

Write a C-programming: Can someone please modify my code below and help

with the following problem. 1. Create a separate function that prompts a

#include #include #include = int prompt(void); int modarray(int a[], int size); void printArray(int a[], int size); int main(void) { int arrint[8]={@}; int x,y,i; srand(time(NULL)); x=prompt(); for(i @; i

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!