Vidyalelo
C++ Programming · Q61

Constructors and Destructors in C++

Programming · C++ Programming · question 61

Q61

What will be the output of the following C++ code? #include using namespace std; class A A() cout<<"A's Constructor called "; ; class B public: A a; B() cout<<"B's constructor called "; ; int main(int argc, char const *argv[]) B b; return 0;

A.
A's Constructor called
B's constructor called
B.
B's Constructor called
A's constructor called
C.
Error
Answer
D.
Segmentation fault

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board