// Pantea Aria // Multi-File Programs // Header file for the array_functions module // Header files typically include: // - #define constants // - struct definitions // - enum definitions // - function prototypes and documentation comments // Reads integers into the given array // Assumes valid input void read_array(int size, int array[]); // Prints all integers in the given array void print_array(int size, int array[]); // Finds and returns the minimum value in the array int find_minimum(int size, int array[]); // Returns the sum of all elements in the array int sum_array(int size, int array[]);