What is the difference between #import and #include?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between a template and a macro?
What is the role of static keyword for a class member variable?
What is the difference between new() and malloc()?
How can you force instantiation of a template?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Is there any function that can skip certain number of characters present in the input stream?
Explain the need for "Virtual Destructor"?
Why iomanip is used in c++?
Will a catch statement catch a derived exception if it is looking for the base class?
What is the type of this pointer in c++?
What is polymorphism in c++? Explain with an example?
What are references in c++?