From which node does starting
nodes address is known in a single
linked list ?
Answer
A.
Trailer Node
B. Middle Node
C. Header Node
D. All of the above
Answers
Answered by
2
☆ ANSWER ☆:-
C. Header Node.
A linked list is represented by a pointer to the first node of the linked list. The first node is called the head. If the linked list is empty, then the value of the head is NULL. In C, we can represent a node using structures.
Similar questions