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
If you don’t declare a return value, what type of return value is assumed?
Differentiate between structure and class in c++.
Will a catch statement catch a derived exception if it is looking for the base class?
Tell me what are static member functions?
Define a nested class.
Write about all the implicit member functions of a class?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
what are the types of Member Functions?
How the keyword struct is different from the keyword class in c++?
Do class declarations end with a semicolon?
Will rust take over c++?
What is a hashmap c++?
What is buffering in c++?
What is the output of the following program? Why?
What's the hardest coding language?