The operator used to get value at address stored in a pointer variable is
Answers
Answered by
3
The operator used to get value at address stored in a pointer variable is?
=> "*"
Answered by
0
The operator used to get value at the address stored in a pointer variable is the indirection operator.
- When used on a pointer, the indirection operator (or dereferencing operator) (*) returns the value contained in the address kept in the pointer variable.
- A pointer addresses a value through the memory address it stores, whereas a variable (such as a number) references a value directly. Indirection or dereferencing is the process of directly referencing a value without using a pointer.
- Both the RHS (temp = *pNumber) and the LHS (*pNumber = 99) of an assignment statement can contain the indirection operator (*).
#SPJ 3
Similar questions
Chemistry,
6 months ago
English,
6 months ago
English,
6 months ago
Environmental Sciences,
1 year ago
Math,
1 year ago
Social Sciences,
1 year ago