Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
No Answer is Posted For this Question
Be the First to Post Answer
Can char be a number c++?
What is virtual destructor ans explain its use?
Write a program to find the reverse Fibonacci series starting from N.
Will rust take over c++?
What is 'Copy Constructor' and when it is called?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
why the size of an empty class is 1
What is the role of static keyword for a class member variable?
What does scope resolution operator do?
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.
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