Código:
int main()
{
char nombre[80];
cout << "Como te llamas" << endl;
cin >> nombre;
cin.get();
cout << "Hola: " << nombre;
return 0;
}


