Question: Please help with C! and many thanks also the file is aboverage.txt I added the list in the bottom included the file name in the
Please help with C! and many thanks
also the file is aboverage.txt I added the list in the bottom
included the file name in the program if need it!! and dont copy and paste other solutions please
383 886 777 915 793 335 386 492 649 421 362 27 690 59 763 926 540 426 172 736 211 368 567 429 782 530 862 123 67 135 929 802 22 58 69 167 393 456 11 42 229 373 421 919 784 537 198 324 315 370 413 526 91 980 956 873 86

(100 pts) Write a program to find the number of elements above the average value in a file. Load the file to an array, compute average using the array and find the number of elements above average using the array. Use dynamic memory allocation using calloc to allocate the array and if the allocated size is not enough, use realloc to double the size of the array. Start with an array of size 10. Make sure you free the memory you allocated before you end the program. You can implement the following functions in your program. double average (int *ptr, int size) int above average int ptr, int size, double average) Sample execution is given below. Print a message on the screen when you allocate, reallocate and free the memory as shown below. Use argc, argv and file operations for this recitation. fox01> recitation a.txt Allocated 10 integers Reallocated to 20 integers Reallocated to 40 integers Reallocated to 80 integers Reallocated to 160 integers 47 elements are above average of 477.455446 Dynamic array freed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
