Reverse a linked list using pointers (C programming language)
Respuesta de la entrevista
Anónimo
13 may 2016
Is the below answer correct?
temp = head;
while (next!=null){
if (current==null){return;}
temp = current;
current = next;
next = temp;
}
return current, next;
}