STL (140)
OOPS (873)
C++ General (2409) How is stl different from c++ standard library?
Do inline functions improve performance?
How do I exit turbo c++?
Why do we need constructors in c++?
What are pointers used for c++?
What are exceptions c++?
Is c++ the most powerful language?
How do you decide which integer type to use?
Is c++ the hardest programming language?
Differentiate between an inspector and a mutator ?
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
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
What is abstract class in c++?
What is the difference between reference and pointer?
How would you implement a substr() function that extracts a sub string from a given string?