store.c
-- focus on a basic piece of array usage: input numbers and store them in an
array
store-chk.c
-- version of store.c that does array bounds checking
store-inf.c
-- version of store.c with an infinite loop; you should be able to spot it
pretty easily
store-debugging.c
-- version of store.c with some typical debugging statements
store-more-debugging.c
-- version of store.c with some more debugging statements
store-tricky.c
-- version of store.c that's shorter, but uses the ++ operator in a tricky way
store-tricky-subtle-flaw.c
-- version of store.c that uses the ++ operator in a tricky way (that doesn't
work!)