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