What is the difference between delete and delete[ ]?
A31. Delete deletes one object; delete[ ] deletes an array of objects. Q32. Name two cases where you MUST use initialization list as opposed to assignment in constructors. A32. Both non-static const data members and reference data members cannot be assigned values; instead, you should use initialization list to initialize them.