#include <stdio.h>
void f (void)
{
  printf ("Sono nella funzione \"%s\".\n", __func__);
}
int main (int argc, char *argv[])
{
  f ();
  return 0;
}