Examveda
Examveda

What will be the output of the following C++ code?
#include <iostream>  
using namespace std;
class A{
public:
	int a;
	A(){
		cout<<"Constructor called\n";
	}
} a;
int main(int argc, char const *argv[])
{
	cout<<"Main function\n";
	return 0;
}

A. Constructor called
Main function

B. Main function
Constructor called

C. Error

D. Segmentation fault

Answer: Option A


Join The Discussion

Related Questions on Constructors and Destructors in C plus plus