Separate Compilation
These are the files:
utility.h
and
utility.cpp
lists.h
and
lists.cpp
user.cpp
And the commands to compile them are
CC -c utility.cpp
CC -c lists.cpp
CC user.cpp utility.o lists.o