The members of a structure are accessed using the ________ operator.
- -> (arrow)
- . (dot)
- :: (scope)
- [] (brackets)
In C, members of a structure are accessed using the dot (.) operator.
Loading...
Related Quiz
- In C, pointers can be used to pass ________ to a function.
- What is the behavior of malloc when the size requested is zero?
- What type of variable is one that is declared outside any function and is available throughout the program?
- What is the significance of using pointers to arrays in C?
- When a function receives a pointer as an argument, it can modify the ________ that the pointer points to.