Q65
What will be the output of the following C++ code? #include using namespace std; class A ~A() ; class B public: A a; ; int main(int argc, char const *argv[]) B b; return 0;
A.
A's Constructor called
B's constructor called
B's constructor called
B.
B's Constructor called
A's constructor called
A's constructor called
C.
Error
AnswerD.
Segmentation fault
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board