/*	Read Characters program */

#include <iostream.h>
#include <fstream.h>
#include <lvpstring.h>

using namespace std;	// October 5, 2001

int main()
{
	ifstream InFile("quick.txt");
	if (InFile.fail()) {
		cout << "File could not be opened";
		return(0);
	}
	else {
		char Character;
		while (InFile.get(Character))
			cout << ">" << Character << endl;
		cout << "Done" << endl;
		return(0);
	}
}

