Posted by he prints for us on August 15, 2001 at 05:00:36:
In Reply to: Re: Proj 5 help posted by analgram on August 15, 2001 at 03:01:15:
: you have to output to the screen...
: the correct outputs are in the good_one.out and good_two.out files in the PROJECT_FIVE folder
I thought the code below meant to write into a file... In any case, I think he takes care of printing in his test.cpp...
ofstream fout;
fout.open("normal_termination.tmp");
fout << "Normal termination" << endl;
fout << 0 << endl;
return 0;