Write a c program which simulates the rolling


Write a C program which simulates the rolling of three dice, several thousand times, and maintains and prints a record of the number of 2s, 3s, . . ., 12s seen. See man random under Linux.
srandom( time(NULL) ); initializes a random seed. A call to random() gives you a random number.
However, you have to get a number between 1 and 6. That can be done by the % operator.

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: Write a c program which simulates the rolling
Reference No:- TGS089016

Expected delivery within 24 Hours