Tag: Pointer
-
C++References in C++
C++ references allow you to give a variable a second name that you can use to read or modify the…
October 18, 2022
-
C++Class Members Pointers in C++
A pointer to a C++ class is created in the same way that a pointer to a structure is created,…
October 20, 2022
-
C++Upcasting in C++
Upcasting is the process of creating the derived class’s pointer or reference from the base class’s pointer or reference. It…
October 26, 2022
-
DSA BasicsPointers in DSA
What are pointers? Pointers are variables that are used to save the position of a value in memory. A memory…
May 22, 2023