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
What is constructor c++?
How a macro differs from a template?
What are the uses of typedef in a program?
What is the latest c++ version?
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
When do we use copy constructors?
What are the types of container classes?
What is public, protected, private in c++?
How do I run c++?
What does new do in c++?
What are the two shift operators and what are their functions?
List the merits and demerits of declaring a nested class in C++?
What happens if a pointer is deleted twice?
How come you find out if a linked-list is a cycle or not?
What is searching? Explain linear and binary search.