codice:
void calcolaPotenza(int *v)
{
	*v=*v**v;
}

void stampa(int *v)
{
	printf("%d", *v);
}