Q72
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[]) cout<<"Main function "; return 0;
A.
Constructor called
Main function
AnswerMain function
B.
Main function
Constructor called
Constructor called
C.
Error
D.
Segmentation fault
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board