Examveda

What will be the output of the following C++ code?
#include <iostream>  
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. B's Constructor called
A's constructor called

C. Error

D. Segmentation fault

Answer: Option C


Join The Discussion

Related Questions on Constructors and Destructors in C plus plus