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...

What is the output of:

String a1 = "Hello";
String a2 = "world!";
String* s1 = &a2;
String& s2 = a1;
s1 = &a1;
s2 = a2;
std::cout << *s1 << " " << s2 << std::endl;

Answer Posted / dsp

address of a1 hello

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort

1100


Explain the isa and hasa class relationships. How would you implement each?

1180


Explain the concept of memory leak?

1156


What jobs can you get with a c++ certification?

1105


Explain unexpected() function?

1162


How a new operator differs from the operator new?

1182


How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?

2367


Arrange Doubly linked list in the ascending order of its integral value and replace integer 5 with 7?

4168


What is recursion?

2377


What's the order in which the objects in an array are destructed?

1465


what is a reference variable in C++?

1285


What is null pointer and void pointer and what is their use?

1149


List different attributes in C++?

1145


what is VOID?

1123


write a porgram in c++ that reads an integer and print the biggest digit in the number

2308