Give example of a pure virtual function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Can c++ do everything c can?
What is c++ library?
Explain the purpose of the keyword volatile.
How to construct muliton object
Where can I run c++ program?
Is c++ a good beginners programming language?
What are namespaces in c++?
how to swap two strings without using any third variable ?
What is rtti in c++?
How a macro differs from 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
When a function is made inline. Write the situation where inline functions may not work.