Asked by Lindsey Marie on Jun 06, 2024

verifed

Verified

The structure pointer operator is ____.

A) ") "
B) ->
C) &
D) *

Structure Pointer Operator

The operator used to access members of a structure through a pointer in C/C++ (->).

  • Gain insight into the function of structure pointers and the mechanism of the indirection operator.
verifed

Verified Answer

SS
Suzanne SaintilienJun 07, 2024
Final Answer :
B
Explanation :
The structure pointer operator is "->". It is used to access members of a structure through a pointer to that structure.