what do you mean by memory management operators
Answer Posted / 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 |
Post New Answer View All Answers
What are references in c++?
What is static function? Explain with an example
Define linked lists with the help of an example.
What is extern c++?
What is a singleton class c++?
What does override mean in c++?
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).
What are the operators in c++?
Explain differences between new() and delete()?
What is the difference between interpreters and compilers?
What are the two shift operators and what are their functions?
What is the rule of three?
What are friend functions in C++?
What is a storage class?
What is null c++?