InterviewSolution
Saved Bookmarks
| 1. |
List The Issue That The Auto_ptr Object Handles? |
|
Answer» The auto_ptr OBJECT is USED to deallocate MEMORY, which is ALLOCATED to a variable, when the variable goes out of scope. The auto_ptr object is used to deallocate memory, which is allocated to a variable, when the variable goes out of scope. |
|