codice:
void stampa(nodo *lista){
	if (lista == NULL)
		cout << "FINE LISTA 	\n";
	else{
		cout << lista->info << "\n";
		stampa(lista->next);		


		
	}
}
praticamente

printf("FINE LISTA \n");

printf ("%d",lista->info);

o almeno mi pare...