Home » C++ Programming » Pointers » Question
  1. Which is referred by pointers to member?
    1. Non-static members of class objects
    2. Referring to whole class
    3. static members of class objects
    4. All of above
    5. None of these
Correct Option: A

We cannot use a pointer to member to point to a static class member because the address of a static member is not associated with any particular object.



Your comments will be displayed only after manual approval.