a class that maintains a pointer to an object that is
programatically accessible through the public interface is
known as?
Answer Posted / venkataramakrishna. danduri
It is nothing but a Smart pointer.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Define a pointer to a data member of the type pointer to pointer?
How to declare a pointer to an array of integers?
What is the difference between public, private, and protected access?
How does code-bloating occur in c++?
Explain how functions are classified in C++ ?
How should runtime errors be handled in c++?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What is the history of c++?
What is the difference between a "copy constructor" and an "assignment operator" in C++?
What do you mean by translation unit in c++?
how to connect with oracle 9i with server in socket program in c/c++
What do you mean by storage classes?
What is a try block?
Write about the access privileges in c++ and also mention about its default access level?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?