jupiter.c
-- a simple struct type for a planet
our-solar-system.c
-- a struct type for a solar system, illustrating arrays of structs
planet.h
-- header file for type Planet, and associated functions
planet.c
-- implementation of planet.h
solar-system.h
-- header file for type Planet, and associated functions
solar-system.c
-- implementation of solar-system.h
planet-test.c
-- test program for planet.{h,c}
solar-system-test.c
-- test program for solar-system.{h,c}
student-info.h
and
student-info.c
-- another example using arrays of structs, in this case for a database of
student information records