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 is the difference between cin.read() and cin.getline()?
What are guid?
Which software is best for coding?
Describe private, protected and public – the differences and give examples.
Is it possible for the objects to read and write themselves?
What type of question are asked in GE code writing test based on c++ data structures and pointers?
What is the output of the following program? Why?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
What are the 4 types of library?
What is a singleton c++?
What is dev c++ used for?
Explain about templates of C++.
Explain what are mutator methods in c++?