InterviewSolution
Saved Bookmarks
| 1. |
What are the operators available in C++ for dynamic allocation and de-allocation of memories?(a) new(b) delete(c) compare(d) both new & delete |
|
Answer» Right choice is (d) both new & delete Easy explanation - new and delete operators are mainly used to allocate and deallocate during runtime. |
|