2006-10-24 17:26:51 UTC
Here is my code:
#include "stdlib.h"
#include "iostream.h"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string yourname;
cout << "Please type your name and hit Enter: ";
cin >> yourname;
cout << endl << "Hello, " << yourname << endl << endl;
cout << "Press c and hit Enter to continue...";
char justwait;
cin >> justwait;
return 0;
}
Any help would be greatly appreciated.