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


Please Help Members By Posting Answers For Below Questions

What are the advantage of using register variables?

637


What is a linked list in c++?

542


What is c++ flowchart?

675


If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?

634


What is capacity in vector in c++?

544






Can manipulators fall in love?

559


What do you mean by delegate? Can a user retain delegates?

523


Describe the advantages of operator overloading?

575


What are vtable and vptr?

616


Is map sorted c++?

517


What are different types of loops in c++?

654


What is an operator function? Describe the function of an operator function?

612


How do you import payscale data from non SAP to SAP?is it through LSMW or any other way is there?

3200


What is the best c++ compiler for windows 10?

578


What are the uses of typedef in a program?

614