हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा ११

Write the output of the following program. #include<iostream> using namespace std; class A { protected: int x; public: void show() {cout<<"x = "<<x<<endl;} - Computer Science

Advertisements
Advertisements

प्रश्न

Write the output of the following program.

#include<iostream>
using namespace std;
class A
{ protected:
int x;
public:
void show()
{cout<<"x = "<<x<<endl;}
A()
{ cout<<endl<<" I am class A "<<endl;}
~A()
{ cout<<endl<<" Bye ";} };
class B : public A
{protected:
int y;
public:
B(int x1, int y1)
{ x = x1;
y = y1; }
B()
{ cout<<endl<<" I am class B "<<endl; }
~B()
{ cout<<endl<<" Bye "; }
void show()
{ cout<<"x = "<<x<<endl;
cout<<"y = "<<y<<endl; } };
int main()
{A objA;
B objB(30, 20);
objB.show();
return 0; }

टिप्पणी लिखिए

उत्तर

Output:

I am class A
I am class B
X = 30 Y = 20
Bye Bye
Bye

shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 16: Inheritance - Evaluation - Section - D [पृष्ठ २७४]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 11 TN Board
अध्याय 16 Inheritance
Evaluation - Section - D | Q 4. | पृष्ठ २७४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×