Do we have to use initialization list in spite of the assignment in constructors?
What are the rules for naming an identifier?
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
what is the use of templates?
daily Routine of father
Difference between pointer to constant vs. Pointer constant
which is the easy way to divide any integer by 2?
What is the role of C++ shorthand's?
Explain virtual class and friend class.
What is the most common mistake on c++ and oo projects?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
Explain the pure virtual functions?
How do you compile the source code with your compiler?