What is the latest c++ version?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of virtual destructor?
What is the use of volatile variable?
Is c++ fully object oriented?
What gives the current position of the put pointer?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
Can I uninstall microsoft c++ redistributable?
What is the basic structure of c++ program?
What is the difference between the parameter to a template and the parameter to a function?
Explain what is oop?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
How do you invoke a base member function from a derived class in which you have not overridden that function?