progs.txt Programs that read a sequence of integers, one per line, with no prompts. When a sentinel is used, it is -1. Designed to take input from stdin with redirection, as shown in this example: *** start of example *** unix-prompt% cat numsWithSent.dat 3 4 9 -1 unix-prompt% ./sumLoopSent < numsWithSent.dat 16 unix-prompt% *** end of example List of programs: sumLoopSent.cc sum all the numbers til sentinel of -1 sumLoopEOF.cc sum all the numbers til EOF fileToArray.cc read all numbers into an array, print contents minUsingArray.cc read into an array, find the minimum minWithoutArray.cc find the minimum without using an array