#include void main(void) { char nome[100]; printf("Come ti chiami? >"); gets(nome); printf("Ciao, %s!\n",nome); }