Science, asked by happy31105233, 10 months ago

. In Pointer concept, Indirection Operator (*) returns
(A) Value of the variable
(B) Location of the variable
(C) Address of the variable
(D) None of the above

plz tell me book chapter name . very urgent needed​

Answers

Answered by Anonymous
55

Answer:

To get the value of a pointer, just de-reference the pointer. int *ptr; int value; *ptr = 9; value = *ptr; value is now 9.

Similar questions