write a c++ to define a class box with length,breadth and
height as data member and input value(),printvalue() and
volume() as member functions.

Answer Posted / muhammad waqas

#include<iostream>
using namespace std;
class Box{
public:
int height;
int length;
int width;
};

main()
{
int height;
int length;
int width;

int volume=0;
Box box1;
Box box2;
box1.height=3;
box1.length=2;
box1.width=1;
volume=box1.height*box1.length*box1.width;

cout<<volume;



}

Is This Answer Correct ?    89 Yes 40 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In what scenario does the Logical file and Physical file being used?

2318


Explain stl.

898


i wanted to know about questions about c,c++ , which is required for placements.... im a fresher

1696


What is a list in c++ stl?

689


What are the various types of stl containers?

727






Q1. A. What is unary operator? List out the different operators involved in the unary operator. B. What is an adjust field format flag? Q2. A. Distinguish between a # include and #define. B. Can a list of string be stored within a two dimensional array? Q3. A.Explain how a pointer to function can be declared in C++? B.List the merits and demerits of declaring a nested class in C++? Q4. A. What are the syntactic rules to be avoid ambiguity in multiple inheritence? B. Explain the operation of overloading of an assignment operator. Q5. A. Explain how the virtual base class is different from the conventional base classes of the opps. B. Explain how an exception handler is defined and invoked in a Program. Q6. A. What is a binary file? List the merits and demerits of the binary file usagein C++. B. Write short notes on Text Manipulation Routines. C. Write bites in Turbo c++ Header (“Include”) Files.

2307


Describe the My Computer and My Documents folders; identify the elements that are present in every Window.

1853


sir please send me bpcl previous question papers

1950


Name the different types of stl containers.

685


What are stl algorithms?

617


Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.

1642


What does stl mean in slang?

645


Define stl.

771


What is stl in c++ with example?

630


write a program that will accept a number and print.its equivalent in words the maximum input number is 9999

2493