Answer Posted / vinay bondade
Everything for what a class is implemented holds good for
structure also in C++. The only difference is the
attributes in a class if access specifiers are not
specified they are Private members but for structure they
are public members.
| Is This Answer Correct ? | 24 Yes | 1 No |
Post New Answer View All Answers
Can we use clrscr in c++?
How a pointer differs from a reference?
Explain the uses of static class data?
What are the various arithmetic operators in c++?
Define a nested class.
Describe Trees using C++ with an example.
What is buffering in c++?
What is lambda expression c++?
Explain the concept of memory leak?
What flag means?
What is a static element?
What is a tuple c++?
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
What is the difference between prefix and postfix versions of operator++()?
Is it possible to provide special behavior for one instance of a template but not for other instances?