What Is Pointer In Modern C++ | Learn C++
In modern C++, a pointer is a variable that holds the memory address of another object. Pointers can be used to manipulate and access dynamically allocated memory, as well as to pass variables by reference. The use of raw pointers is discouraged in favour of safer alternatives like smart pointers. For more information about pointer in modern C++ visit our website.