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 is the c++ programming language used for?

579


how to access grid view row?

1812


Define vptr.

593


Which is best ide for c++?

561


What is a far pointer? where we use it?

611






What is a dll entry point?

560


What are the types of container classes?

608


How the delete operator differs from the delete[]operator?

637


Explain the concept of friend function in c++?

599


What is the use of this pointer in c++?

566


What is a literal in c++?

564


Differentiate between C and C++.

705


What is the difference between the functions rand(), random(), srand() and randomize()?

727


What are register variables?

641


What are proxy objects in c++?

639