Singly link list
In Singly link list every previous
node has address of its next node.address of first node is in head and address
part of last node is NULL.
Struct node
{int data;
A blog about C++ Programming language.All concepts of C++ language like functions,stack,queue,constructor,file handling, polymorphism, class,link list etc. are discussed in easy wording on this blog.