Prova con questa:
Vedi che nn l'ho provatacodice:void Ripeti(ListaInteri *l, ListaInteri *testa) { if (l->next == NULL) { l->next = testa; testa = testa->next; return; } Ripeti (l->next,testa); return; }
Prova con questa:
Vedi che nn l'ho provatacodice:void Ripeti(ListaInteri *l, ListaInteri *testa) { if (l->next == NULL) { l->next = testa; testa = testa->next; return; } Ripeti (l->next,testa); return; }
Experience is what you get when you don’t get what you want