Fall 2017 Lecture 20

Date
October 16, 2017

Topics
Arrays
Arrays in Memory
Traversing an Array
Searching an Array

References
Arrays
Two-Dimensional Arrays: c file / txt file
Reading & Examining Text: c file / txt file

Reading
Chapter 6

Exercises
Submit HW #6
HW #7
6.1 - 6.8
Take the two-dimensional arrays example and modify it to sum the values in each of the columns and also sum each of the values in the rows. Print the summed values at the end of each row and underneath each column. One way to do this is to place the sum of each column into an array and each row sum into a different array. Then print the stored values at the appropriate time.
<<<< Prev     Next >>>>