Which operator is used to access the value stored at the address specified by a pointer?
- &
- *
- ->
- .
The '*' operator in C is used to access the value stored at the address specified by a pointer. It is also known as the dereference operator. The '&' operator is used to get the address of a variable, not the value.
Loading...
Related Quiz
- How does the compiler determine the size of a structure containing bit fields?
- What is the scope of a local variable defined inside a function in C?
- What is the significance of using pointers when working with structures in C?
- In C, the first element of an array can be accessed using index ________.
- What might be a reason to use bit fields when designing a system with strict memory constraints?