stats-while-array.c
-- motivate the use of arrays: compute stats simple stats
stats-loops-arrays-functions.c
-- version of the stats program that does it all, with loops, arrays, and
functions
string-basics.c
-- basis of strings, in particular how they're stored as arrays of char
input-3-strings.c
-- very simple program to input three strings from stdin.
input-loop.c
-- input strings from stdin, until EOF
strlen.c
-- implementation of the C library strlen function
string-list.c
-- lists of strings, i.e., arrays of strings, i.e., arrays of arrays