what do you mean by memory management operators

Answers were Sorted based on User's Feedback



what do you mean by memory management operators..

Answer / rasool

Memory management in C++ is normally done using
keywords 'new' and 'delete'.
'new' takes the place of 'malloc' and 'delete' for 'free'.

http://publib.boulder.ibm.com/infocenter/lnxpcomp/v7v91/inde
x.jsp?
topic=/com.ibm.vacpp7l.doc/language/ref/clrc05cplr199.htm

might speak more.

Is This Answer Correct ?    23 Yes 3 No

what do you mean by memory management operators..

Answer / 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

what do you mean by memory management operators..

Answer / snigdhadeb

Memory management operators are "new" and "delete".

Is This Answer Correct ?    4 Yes 1 No

what do you mean by memory management operators..

Answer / jayaseelan

it is a storage device is caled memory.maintain memory is
memory management

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More C++ General Interview Questions

Differentiate between structure and class in c++.

0 Answers  


How a modifier is similar to mutator?

0 Answers  


Is swift better than c++?

0 Answers  


What is a namespace in c++?

0 Answers  


What is the main function c++?

0 Answers  






what is VOID?

0 Answers  


What is the last index number in an array of 100 characters a) 100 b) 99 c) 101

0 Answers  


What is a dll entry point?

0 Answers  


What is a friend function in c++?

0 Answers  


What is the difference between C and CPP?

0 Answers   iNautix,


Explain the static storage classes in c++.

0 Answers  


Is it legal in c++ to overload operator++ so that it decrements a value in your class?

0 Answers  


Categories