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

How to detect memory leaks in c++

1 Answers   Mphasis,


How the keyword struct is different from the keyword class in c++?

0 Answers  


What is the purpose of ios::basefield in the following statement?

0 Answers  


What would happen on forgetting [], while deallocating an array through new?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,






Define namespace in c++?

0 Answers  


Discussion on error handling of C++ .

0 Answers  


Define Virtual function in C++.

0 Answers   iNautix,


What is the use of this pointer in c++?

0 Answers  


What are the vectors in c++?

0 Answers  


give me some class & objects examples?

1 Answers  


What is an inclusion guard?

0 Answers  


Categories