Vidyalelo
C++ Programming · Q72

Constructors and Destructors in C++

Programming · C++ Programming · question 72

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
Answer
B.
Main function
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