Question: Please fast Write a C program that includes the following: 1. (3 points) A function that prints the largest three elements in array a with
Write a C program that includes the following: 1. (3 points) A function that prints the largest three elements in array a with the following prototype: void PrintLargest (int *a, int size); 2. (5 points) A function that multiplies the minimum element in array a by the value of m with the following prototype: void MultMinimumByConst int *a, int size, int m); 3.(4 points) The main function that: - Declares integer named m as well as an integer array named Arr that contains 60 elements. -Reads m and Art from the keyboard, -Calls PrintLargest to print the maximum three elements in Arr. -Calls Mult MinimumByConst to multiply the minimum element in Arr by m. -Prints An
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
