2 * User inputs integer number. This number represents the count of random numbers to generate.
3 * Each of these numbers is counted in an array of 10 integers.
4 * When the number generation is complete, a chart of the distribution is sent to stdout.
13 int tally
[10] = { '0' };
15 printf("Number of Random Integers to Generate: ");
25 printf("%d->%d\n", count
, tally
[count
]);