Posts by user77536 • 33 points
1 post
-
3
votes1
answer110
viewsQ: Doubt with C Pointers
I have a chained list, with a single variable that is the date(int). I did this function to delete by value. lista *head = NULL; void deletar(int valor) { lista *prev, *temp = head; if(temp->data…