Examveda

What will be the output of the following C++ code?
#include <iostream>  
using namespace std;
class A{
	A(){
		cout<<"A's Constructor called\n";
	}
	friend class B;
};
class B
{
public:
	A a;
	B(){
		cout<"B's constructor called\ns";
	}
};
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 A


Join The Discussion

Related Questions on Constructors and Destructors in C plus plus