#include void f() { char nombre[64]; printf("¿Cómo te llamas? "); scanf("%s", nombre); printf("¡Hola %s!\n", nombre); } int main() { f(); }