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 |
How can you link a c++ program to c functions?
What is difference between shallow copy and deep copy? Which is default?
Can member functions be private?
What do you mean by const correctness?
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
What is wrapper class in c++?
How do you decide which integer type to use?
What is the difference between #import and #include in c++?
Explain the concept of inheritance in C++.
Do inline functions improve performance?
How does throwing and catching exceptions differ from using setjmp and longjmp?