Friday 12 April 2013

Link List In C


Link list are made up of nodes,in which each node points or refers to the next node in the list.In addition, each node contain a unit of data that can be called as cargo which store the data to be stored on the link list.
As the last node of the link list does not need reference to any node so the last node points to or refers to null.
So here is the code for the link Singly link list having only one node which contain reference of the next node.
Download this program from below link

DOWNLOAD

No comments:

Post a Comment