To access members of a structure using a pointer to that structure, the ________ operator is used.
- arrow
- colon
- dot
- hyphen
To access members of a structure using a pointer to that structure, the arrow (->) operator is used in C.
Loading...
Related Quiz
- How do you declare a two-dimensional array of integers with 3 rows and 4 columns?
- You are developing a program to manage the seating arrangement in a movie theater with rows and columns. How would you represent the seats using arrays?
- The memory consumed by an array declared as float arr[10][20]; is ________.
- What is a key characteristic of a union in C?
- To split a string into tokens in C, the function ________ is used.