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 looks for a value in an array and returns the cell number where it was found or -1 if not found.
Statistical Table of Differences A program that computes the mean and standard deviation of an array and displays the difference between each value and the mean.