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
Explain one-definition rule (odr).
Explain virtual class?
What is an adaptor class in c++?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What is binary object model?
What are the methods of exporting a function from a dll?
Do class method definitions?
Explain the difference between using macro and inline functions?
Will rust take over c++?
Why is c++ considered difficult?
What is size_type?
What does scope resolution operator do?
Can c++ do everything c can?
What does floor mean in c++?