Advertisements
Advertisements
Question
Write the output of the following program.
include<iostream>
using namespace std;
class Seminar
{ int Time;
public:
Seminar()
{ Time=30;cout<<"Seminar starts now"<<endl; } void Lecture()
cout<<"Lectures in the seminar on"<<endl; } Seminar(int Duration)
{ Time=Duration;cout<<"Welcome to Seminar "<<endl; }
Seminar(Seminar &D)
{ Time=D.Time;cout<<"Recap of Previous Seminar Content "<<endl;}
~Seminar()
{cout<<"Vote of thanks"<<endl; } };
int main()
{ Seminar s1,s2(2),s3(s2);
s1.Lecture();
return 0;
}
Short Note
Solution
Output:
Seminar starts now
Welcome to seminar
Recap of previous seminar content
Lectures in the seminar on
Vote of thanks
Vote of thanks
Vote of thanks
shaalaa.com
Is there an error in this question or solution?