Explain RAII (Resource Acquisition Is Initialization).
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
• A programming idiom where resource allocation is tied to object lifetime. Destructors release resources.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• A programming idiom where resource allocation is tied to object lifetime. Destructors release resources.
| Is This Answer Correct ? | 0 Yes | 0 No |
• A programming idiom where resource allocation is tied to object lifetime. Destructors release resources.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are associate containers?
What is the default width for ouputting a long integer using the insertion operator?
What is #include cstdlib in c++?
What is == in programming?
Write about the stack unwinding?
What is class and structure in c++?
Why do we need runtime polymorphism in c++?
What is type of 'this' pointer? Explain when it is get created?
What is string in c++ programming?
What is the difference between set and map in c++?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
What is anonymous object in c++?