Discussion :: C++ - MCQs
- Which is called on allocating the memory for array of objects?
Answer : Option B
Explanation :
When you allocate memory for an array of objects, the default constructor must be called to construct each object. If no default constructor exists, you're stuck needing a list of pointers to objects.
Be The First To Comment