Why Pointers are not used in C++?
No Answer is Posted For this Question
Be the First to Post Answer
What is an operator function? Describe the function of an operator function?
What are friend functions?
What are the vectors in c++?
Difference between Overloading and Overriding?
35 Answers Appnetix Techno, GameLoft, HP, IBM, NIIT, Rohde and Schwarz,
Can class objects be passed as function arguments?
How is an Abstract Base Class(ABC) related to an "Abstract Data Type" (ADT)
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"?
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 do you know about friend class and friend function?
Explain operator overloading.
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
an integer constant must have atleast one a) character b) digit c) decimal point