What is a pointer value and address? 

 A pointer value is a data object that refers to a memory location. Each memory locaion is numbered in the memory.The number attached to a    memory location is called the address of the location.

Showing Answers 1 - 3 of 3 Answers

subbu malepati

  • Dec 3rd, 2006
 

Hi,int *ptr=123;so ptr is pointer varible. suppose the adress of ptr is 2002( Assume) AT this mem-locn: value 123 is saved.to access address use & operatorto access value at the address use * opertator.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions