108k views
4 votes
When you work with a dereferenced pointer, you are actually working with ________.

A) a variable whose memory has been allocated
B) a copy of the value pointed to by the pointer variable
C) the actual value of the variable whose address is stored in the pointer variable
D) All of these
E) None of these

User Khepin
by
8.6k points

1 Answer

5 votes

Final answer:

When you work with a dereferenced pointer, you are actually working with the actual value of the variable whose address is stored in the pointer variable.

Step-by-step explanation:

When you work with a dereferenced pointer, you are actually working with the actual value of the variable whose address is stored in the pointer variable. This means that you are accessing and manipulating the data stored in the memory location pointed to by the pointer.

User Nalani
by
9.2k points