+ 1
In a linked list, if p is the pointer used to traverse in the list then what is the difference between p==NULL &p->link==NULL?
Here, link is the pointer used to store the address of the next node in the linked list.
1 Answer
0
Thank you.
Here, link is the pointer used to store the address of the next node in the linked list.