What issue do auto_ptr objects address?
Answers were Sorted based on User's Feedback
Answer / ravi
auto_ptr addresses, issues relating to memory management
like, Memory Leaks and Dangling pointers.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / guest
auto_ptr also takes care of auto-initializatio and
exception safety.
| Is This Answer Correct ? | 0 Yes | 1 No |
Under what conditions is multiple inheritance not recommended?
What is a dangling pointer in c++?
What is the best book for c++ beginners?
What is an action class?
Can a Structure contain a Pointer to itself?
What is the use of 'using' declaration in c++?
What are the two types of comments, and how do they differ?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What is the this pointer?
Is it possible for a member function to use delete this?
What is c++ flowchart?
What is the difference between an array and a list?