How is memory managed in C++?
Answers were Sorted based on User's Feedback
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 |
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 |
What are the types of STL containers?
How a modifier is similar to mutator?
Why should you learn c++?
Is main a class in c++?
Which should be more useful: the protected and public virtuals?
What is the iunknown interface?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
What is a static member?
When to use “const” reference arguments in a function?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
What are the differences between public, private, and protected access?
12 Answers IBM, Oracle, Wipro,
How java is different from c and c++?