per disallocare una lista:
tipolista* tmp = lista;
tipolista* tmp;
while(lista!= NULL){
tmp = lista;
lista = lista -> next;
free(tmp);
}
per disallocare una lista:
tipolista* tmp = lista;
tipolista* tmp;
while(lista!= NULL){
tmp = lista;
lista = lista -> next;
free(tmp);
}
Sun Certified Java Programmer
EUCIP Core Level Certified
European Certification of Informatics Professionals