Pointer

Pointers in DSA

What are pointers? Pointers are variables that are used to save the position of a value in memory. A memory…

1 year ago

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…

2 years ago

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,…

2 years ago

References in C++

C++ references allow you to give a variable a second name that you can use to read or modify the…

2 years ago