When using pointers to structures, the ________ operator is used to access the members of the structure.

  • Arrow (->)
  • Asterisk (*)
  • Comma (,)
  • Period (.)
Pointers to structures are used with the arrow operator (->) to access structure members. The arrow operator is used to dereference the pointer and access the member directly.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *