that has a name length limit of 6 characters, not enough for many names. Actually, only 5 characters, because the null terminator takes up one. If you don't want to worry about the length, use C++ strings. Here is a "conversion" of your program for C++ strings:
#include <iostream>
#include <string>
using namespace std;
int main ()
{
cout<<"Hello Please tell me your name:";
string name;
cin >> name;
cout<<" Nice to meet you " <<name<<endl;
system("pause");
return 0;
}
Personally, I prefer C strings like you have currently. But with C++ strings you won't have to worry about the length, it expands automatically.