Pointers and References
A pointer is a special type of data type. Instead of storing data, it stores a memory location. At this location is the data. In some languages, like C/C++, they expect the programmer to track and maintain the pointer information, using special references to know if they are storing/retrieving a location for data, or accessing…