describe private access specifiers?
No Answer is Posted For this Question
Be the First to Post Answer
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
When should we use multiple inheritance?
What is c++ iterator?
How to avoid changing constant values?
What are the differences between java and c++?
How do we implement inheritance in c++?
Do inline functions improve performance?
Explain the operation of overloading of an assignment operator.
what is C++ objects?
What c++ library is string in?
What are c++ stream classes?
What is command line arguments in C++? What are its uses? Where we have to use this?