Basics of Pointers in C++

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 …