Vidyalelo
C++ Programming · Q71

Constructors and Destructors in C++

Programming · C++ Programming · question 71

Q71

What will be the output of the following C++ code? #include 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
Answer
B.
87368746
C.
Error
D.
Segmentation fault

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board