Back To C++ Pointers
        
        
        a pointer can be used to store the address of a variable, for example an integer pointer can store address of a integer variable. a float pointer can store address of a float variable
        
        value of a variable can be retrieved through pointer to that variable using dereference operator(*)