When should we use multiple inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
How many static variables are created if you put one static member into a template class definition?
What happens if a pointer is deleted twice?
What is the header file for setw?
Can inline functions have a recursion? Give the reason?
Write about the retrieval of n number of objects during the process of delete[]p?
Mention the ways in which parameterized can be invoked.
Explain Text Manipulation Routines?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
How a new operator differs from the operator new?
What are the defining traits of an object-oriented language?
What is a c++ class?
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