Are strings immutable in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Will this c++ program execute or not?
What do the header files usually contains?
What is vector string in c++?
How java is different from c and c++?
What does new return if there is insufficient memory to make your new object?
In a function declaration what does extern means?
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
What are register variables?
What is c++ coding?
What are the five types of inheritance in C++?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
What issue do auto_ptr objects address?