views:

96

answers:

1

create a c++ program that will read the three files and output the contents of the screen.

+1  A: 

There are several different C++ libraries that would allow you to do this. Some are more advanced than others.

I suggest a quick Google search for the fopen() and fgetc() functions.

Note: this is only one of many options