Can constructor be private in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Can recursive program be written in C++?
How new/delete differs from malloc()/free?
What is object slicing and how can we prevent it?
What is dangling pointers?and what is memory leak?
What is compilation?
What are the 3 levels of programming languages?
What is an iterator class in c++?
What are register variables?
When you overload member functions, in what ways must they differ?
difference between c and c++?
38 Answers Cognizant, IBM, Infosys, Oracle, Sarva Shiksha Abhiyan, Wipro,
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
Why do we use the using declaration?