Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

Explain how to initialize a const member data.

1033


What is #include iostream?

1255


What is c++ course?

1049


What is runtime errors c++?

1127


Explain some examples of operator overloading?

1124


What is size of string in c++?

987


What is the c++ code?

1174


How are Structure passing and returning implemented by the compiler?

1141


True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

2389


What is flush c++?

1011


What is a storage class?

1278


Why do we use structure in c++?

1082


How do you define a class in c++?

1085


can any one help to find a specific string between html tags which is changed to a sting.. weather.html looks (for location) is somewhere #include #include #include using namespace std; string find_field(string myPage,string); int main (void) { string page, line, location, temperature; ifstream inputFile("weather.xml"); while(getline(inputFile, line)) { page.append(line); line.erase(); } // Now page is a string that contains the whole xml page // Here you need to write something that finds and // extracts location and temperature from the XML // data in the string page and stores them in // the strings location and temperature respectively location=find_field(page,"location"); temperature=find_field(page,"temp_c"); cout << "Location: "<

2056


How would you differentiate between a pre and post increment operators while overloading?

1149