Answer:
C. node*.
Step-by-step explanation:
A linked list is a linear data structure where which contains elements stored at non contiguous memory location.They are linked to each other.Every node in a linked list is a pointer.Node consists of a data element and a pointer of node type which contains the address of the next node.
So to connect all the nodes we need the node to be a pointer.That's how we can connect them by address.