What does it mean to declare a destructor as static?
No Answer is Posted For this Question
Be the First to Post Answer
How many types of modularization are there in c++?
What do you mean by friend class & friend function in c++?
What are the advantages of using friend classes?
Can java be faster than c++?
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 java based off c++?
Are strings mutable in c++?
Which function should be used to free the memory allocated by calloc()?
What is the difference between while and do while loop?
What is the use of default constructor?
What is friend class in c++ with example?
How do you declare A pointer to function which receives an int pointer and returns a float pointer