Why do we use string in c++?


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

Post New Answer

More C++ General Interview Questions

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?

0 Answers  


How do we implement inheritance in c++?

0 Answers  


What is the prototype of printf function?

0 Answers  


Explain bubble sorting.

0 Answers  


What is flag in computer?

0 Answers  


Is c++ a float?

0 Answers  


Differentiate between an array and a list?

0 Answers  


What return value must conversion operators have in their declaration?

0 Answers  


Define a conversion constructor?

0 Answers  


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

3 Answers   Quark,


what is difference between static and non-static variables

10 Answers  


Explain container class.

0 Answers  


Categories