How do you write a function that can reverse a linked-list?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between stack and heap memory?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
iam a fresher to Qt(GUI a c++ based framework software). i need to develop the basic applications on designer by drag and dropping mechanism...so pls send me the procedure to design applications?
What is the use of dot in c++?
Why do we use classes in c++?
Explain overriding.
What are the differences between new and malloc?
How to create a pure virtual function?
How do you declare a set in c++?
When does a name clash occur in c++?
What does it mean to declare a member function as static?