In linked list each node contains a minimum of two fields. One field is data…
2024
In linked list each node contains a minimum of two fields. One field is data field to store the data second field is?
- A.
Pointer to character
- B.
Pointer to integer
- C.
Pointer to node
- D.
Node
Attempted by 374 students.
Show answer & explanation
Correct answer: C
Answer: c
Explanation: Each node in a linked list contains data and a pointer (reference) to the next node. Second field contains pointer to node.