// This is the header file for our array_utilities module // The header file can contain: // - #defines // - structs // - enums // - function prototypes and any comments // Print every integer in the given array void print_data(int size, int data[size]); // Print every odd integer in the given array void print_odd_data(int size, int data[size]); // Given a size, this function reads in enough integers // to fill the given array. // This function does not check for invalid input void read_data(int size, int data[size]); // returns the maximum in a given array of ints int find_maximum(int size, int data[size]);