Computer Science, asked by 1fathimafarsana, 5 months ago

first node in the linked list is called​

Answers

Answered by sadoyc23
0

Answer:

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.

Explanation:

Similar questions