Vidyalelo
C++ Programming · Q56

Constructors and Destructors in C++

Programming · C++ Programming · question 56

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