Multiple choice

__________________ is a pointer to a structure operator.

  1. &

  2. *

  3. ->

  4. <-

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The arrow operator (->) is used to access members of a structure through a pointer. It combines pointer dereference and member access into a single operation. For a pointer p to a struct, p->member is equivalent to (*p).member.