Question: Use c programming, #include , and scanf printf functions. The program will calculate the SECOND minimum number of an array of integers and print it
Use c programming, #include 

The program will calculate the SECOND minimum number of an array of integers and print it out. You can assume the max size of the array is 1000. You must define this max size as a preprocessor directive using such a statement: define SIZE 1000 You can also assume that the number of integers that will be entered will at least be 2. Further descriptions for the functions are given below int main The main function should prompt the user to enter the number of integers that will be entered. It must then read in that many integers and store them in an array. It then calls the function print_array to print the contents of the array. After that, it must call the second_minimum function and print out the second minimum of the list of integers void print_array (int [, int) This function takes in two arguments. First argument is the integer array, and the second argument is an integer representing the size of the array. This function does not return anything. It simply prints out the contents of the array. int second minimum (int ,int) This function takes in the integer array as the first argument and the usable size of the array (the number of integers entered) as the second argument. It must then calculate the second to minimum integer in the list of integers and return it. We went over a program called arrays-and-functions. c" in class. The code can be found on the blackboard in the Lecture 20 folder. Understanding how that works can help you solve this problem Some example runs are given below. Check your program with all the inputs in the example runs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
