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
Differences between private, protected and public and give examples.
Program to check whether a word is a sub-string or not of a string typed
What are containers in c++?
What is runtime polymorphism in c++?
Is recursion allowed in inline functions?
Is c or c++ more useful?
Which one is better- macro or function?
What is the insertion operator and what does it do?
Why is main function important?
What is the main function c++?
Describe the role of the c++ in the tradeoff of safety vs. Usability?
Which software is used for c++ programming?
Is c++ proprietary?
Does c++ have arraylist?
Is c++ a high level language?