smart pointers
-
CPP tutorials
Stack Unwinding in C++
Stack Unwinding is the process of removing function call frames from function call stack at run time. The local objects…
Read More » -
CPP tutorials
Smart Pointers in C++
In C++, pointers are the variables that stores the memory addresses. They are extensively used in dynamic memory location to…
Read More » -
CPP tutorials
Memory leak in C++
In C++, memory leak is a situation where the memory allocated for a particular task remains allocated even after it…
Read More » -
CPP tutorials
new and delete Operators in C++ For Dynamic Memory
In C++, stack memory is automatically allocated for variables at compile time and has a fixed size. For greater control…
Read More » -
CPP tutorials
C++ Pointers
A pointer is a special variable that holds the memory address of another variable, rather than storing a direct value…
Read More »