This article will tell us all about the basics of using pointers in C++.To begin with a pointer should be understood as a pointer variable like all other variables.Now like a variable of type int can store integer values a pointer variable can store only memory addresses. First we should understand that when any variable Continue Reading …
Category: C
Double linked list in c++ implementation
In this double linked list tutorial we go step by step in building our doubly linked list and towards the end we have the source code for a complete program implementing the doubly liked list. The linked list is a collection of nodes of a given type For demonstration purpose we create a type Continue Reading …