Is std :: string immutable?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Where can I run c++ program?

0 Answers  


Mention the storage classes in c++.

0 Answers  


What does std mean in c++?

0 Answers  


What is singleton class in c++?

0 Answers  


What is pair in c++?

0 Answers  


How would you use the functions randomize() and random()?

0 Answers  


Why we use #include conio h in c++?

0 Answers  


What is using namespace std in cpp?

0 Answers  


How do you test your code?

4 Answers   Microsoft,


Live example for static function?

1 Answers   Infosys,


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


How can I disable the "echo" feature?

0 Answers  


Categories