what do you mean by memory management operators
Answer Posted / achal ubbott
by memory management it means allocating memory(space) to
objects. This is done by new and delete operators. These 2
operators are exception to the rules of operator
overloading.
e.g. char *p = new char[100]; // allocation
delete[] p; // dealloaction free the memory space
from heap section of memory.
Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
How many static variables are created if you put one static member into a template class definition?
Is map sorted c++?
Do vectors start at 0 c++?
How would you call C functions from C++ and vice versa?
How many namespaces are there in c++?
What is the return value of the insertion operator?
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
What is #include cmath?
What are the basic data types used in c++?
Do vectors start at 0?
what are function pointers?
What is a constructor in c++ with example?
Define a pdb file.
Write some differences between an external iterator and an internal iterator?
What do you mean by public protected and private in c++?