How is memory managed in C++?

Answers were Sorted based on User's Feedback



How is memory managed in C++?..

Answer / nashiinformaticssolutions

Because C++ enables dynamic memory, the user must manually manage memory instead of relying on a garbage collector function to do it. The "new" and "delete" operators are used to dynamically allocate and deallocate memory, respectively.

Is This Answer Correct ?    0 Yes 0 No

How is memory managed in C++?..

Answer / nashiinformaticssolutions

C++ uses manual memory management with new and delete and also provides smart pointers like std::unique_ptr and std::shared_ptr.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What are the types of STL containers?

4 Answers  


How a modifier is similar to mutator?

0 Answers  


Why should you learn c++?

0 Answers  


Is main a class in c++?

0 Answers  


Which should be more useful: the protected and public virtuals?

0 Answers  


What is the iunknown interface?

0 Answers  


If you want to share several functions or variables in several files maitaining the consistency how would you share it?

0 Answers  


What is a static member?

0 Answers  


When to use “const” reference arguments in a function?

0 Answers  


Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.

0 Answers  


What are the differences between public, private, and protected access?

12 Answers   IBM, Oracle, Wipro,


How java is different from c and c++?

0 Answers  


Categories