Answer Posted / glibwaresoftsolutions
• Smart pointers like std::unique_ptr, std::shared_ptr, and std::weak_ptr manage dynamic memory automatically, preventing memory leaks.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Define what is constructor?
Can I have a reference as a data member of a class? If yes, then how do I initialise it?
What is c++ similar to?
Write about the members that a derived class can add?
What is a type library?
Write bites in Turbo c++ Header ("Include") Files.
What is set in c++?
What is c++ stringstream?
What is a null object in c++?
What is endl c++?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
What is math h in c++?
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
What is the most useful programming language?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work