Filling partially an array A program that partially fills an array from a file
until the end of file (EOF). The program uses a function that fills the array and returns the actual number of data read.
Adding two arrays A function that adds the corresponding values from two arrays
of the same size and puts the results in a third array.
Searching a 1-D array A function that look for a value in an array and returns the cell number where it was found or -1 if not found.