Loading practice questions
Is name of an array of objects is also a pointer to object?
Correct Answer: B — Yes, always
Explanation:
The array name represents a pointer to the object. The name alone can represent the starting address of the array. But that also represents an array which is in turn stored in a pointer.