Examveda
Examveda

What will be the output of the following C++ code?
#include <iostream>  
using namespace std;
class A{
public:
	int a;
};
int main(int argc, char const *argv[])
{
	A a1 = {10};
	A a2 = a1;
	cout<<a1.a<<a2.a;
	return 0;
}

A. 1010

B. 87368746

C. Error

D. Segmentation fault

Answer: Option A


Join The Discussion

Related Questions on Constructors and Destructors in C plus plus