int ch;

while(1)
{
printf("\nMENU");
printf("\nMENU");
printf("\nMENU");

ch = getchar();

switch( ch )
{
case '1': nomefunzione();
break;

default:
printf(".....");
break;
}
}
CIAO