// Vis C++ Hello7.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
using std::cout;
using std::cin;


int _tmain(int argc, _TCHAR* argv[])
{   char* name = new char[10];
	cout << "hello, please enter your name. \n";
	cin >>  name;
	cout << "\n thanks " << name;
	cout << "\n goodbye \n";
	cin >> name;
	return 0;
}


