Open In App

C++ | Constructors | Question 1

Like Article
Like
Save Article
Save
Share
Report issue
Report

Which of the followings is/are automatically added to every class, if we do not write our own.
(A) Copy Constructor
(B) Assignment Operator
(C) A constructor without any parameter
(D) All of the above


Answer: (D)




 


Explanation: In C++, if we do not write our own, then compiler automatically creates a default constructor, a copy constructor and a assignment operator for every class.


Last Updated : 04 Jan, 2013
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads