Two different versions of the
List program
are presented.
They both perform the same function, but use different
library functions. Each one prompts the user
for a file name, and then types the contents of that
file to the console as text.
- Program List1 uses handle oriented I/O,
as declared in the io.h header file.
- Program List2 uses FILE oriented I/O,
as declared in the stdio.h header file.