#include #include void f() { char nombre[64]; std::cout << "¿Cómo te llamas? "; std::cin >> std::noskipws >> nombre; std::cout << "Hola " << nombre << std::endl; } int main() { f(); }