write a program to demonstrate,how constructor and
deconstructor work under multilevel inheritance
Answer Posted / archana
class a
{
//Data
public:
a(){cout<<"class A Constructor"<<endl}
~a(){cout<<"class A Destructor"<<endl}
};
class b:public a
{
//Data
public:
b(){cout<<"class B Constructor"<<endl}
~b(){cout<<"class B Destructor"<<endl}
};
class c:public b
{
//Data
public:
c(){cout<<"class C Constructor"<<endl}
~c(){cout<<"class C Destructor"<<endl}
};
int main()
{
c *pCObj;
pCObj = new c();
return 0;
}
O/p:
class A Constructor
class B Constructor
class C Constructor
class C Destructor
class B Destructor
class A Destructor
Is This Answer Correct ? | 8 Yes | 9 No |
Post New Answer View All Answers
What is the stl, standard template library?
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.
Who created stl?
write a program to convert a decimal number in to its equivalent binary number?
What is a stl vector?
What is meant by stl in c++?
How connect plc and pc through software
What is a standard template library (stl)?
Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
What is stl in oop?
How is stl different from c++ standard library?
What is stl in c++ with example?
Is string part of stl?
What is stl language?