//File:  string22.cpp
#include <iostream>
using namespace std;
//The following program takes a line of text and echoes it to the screen
int main()
{
	char * line;	//line not initialized==>run-time ERROR with Visual C++ 6.0
	
	cin.getline (line, 80);
	
	cout << line << endl;
}
