Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

In statistics, the mode of a set of values is the value that occurs most often o

ID: 3652258 • Letter: I

Question

In statistics, the mode of a set of values is the value that occurs most often or with the greatest frequency. Write a function that accepts as arguments the following:
A) An array of integers
B) An integer that indicates the number of elements in the array

The function should determine the mode of the array. That is, it should determine which value in the array occurs most often. The mode is the value the function should return. If the array has no mode (none of the values occur more than once), the function should return -1. (Assume the array will always contain non-negative values.)

Demonstrate your pointer prowess by using pointer notation instead of array notation in this function.

Explanation / Answer

Just declare an array (of some size). Then ask the user "How many numbers do you want to input?" If that's bigger than your array size, just print a message and exit. If the number of elements is input first, you don't need the realloc() stuff. You can go with simple malloc(). As long as you've learned pointers, that's enough. #include /* In statistics, the mode of a set of values is the value which occurs most often or with the greatest frequency. Write a function that accepts the following arguments: • An array of integers • An integer that indicates the number of elements in the array */ int meanArray(int arrayNum); int main() { int num; printf("How many numbers do you want to enter ? "); scanf("%i", &num); meanArray(num); return 0; } int meanArray(int arrayNum) { int makeArray[arrayNum]; return 0; }
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote