0
Linked list
can anyone help me in writing the algorithm of traversing in a single linked list?
1 Answer
+ 2
Geeta Yadav below might be helpful to you:
current = head;
while (current != NULL)
{
//do your stuff here to access data
current = current->next;
}