what do you mean by memory management operators
Answer Posted / snigdhadeb
Memory management operators are "new" and "delete".
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is data abstraction? How is it different from data encapsulation?
What methods can be overridden in java?
What are enumerations?
What do you understand by a pure virtual member function?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What is the difference between c++ and turbo c++?
What are the c++ access specifiers?
When should you use global variables?
How do you clear a buffer in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
How important is c++?
What are pointers used for c++?
Differentiate between the manipulator and setf( ) function?
What is long in c++?
What is the use of default constructor?