Length of Linked List

PHOTO EMBED

Wed Dec 13 2023 04:29:22 GMT+0000 (Coordinated Universal Time)

Saved by @abhitan #c++

int length(Node *head)
{
	//Write your code here
    int c = 0;
    Node *temp = head;
    while(temp != NULL)
    {
        temp = temp->next;
        c++;
    }
    return c;
}
content_copyCOPY