CS 16 Plan for Today, 2/21/2018: Character I/O - cout.put(char), cin.get(char&) Btw: while(!instream.eof())… // more input Input checking [06-07.cpp, better06-07.cpp] cctype library functions [Display 6.9, pt.1,2] A program to edit a file [06-08.cpp] Creating/using array: type a[size]; for (i = 0; i < size; i++) // use a[i] An array in memory [Display 7.2] Finding max and differences [07-01.cpp] Array elements are passed by value [07-03] Whole array parameter passed like a reference i.e., can change contents [07-04.cpp] Case study pgm: graph of production by plant Solution outline [07-05.cpp] Input/scale tests [07-06.cpp, 07-07.cpp] All together [complete07-08.cpp]