|
| Total Answers and Comments: 4 |
Last Update: May 23, 2006 |
|
| | |
|
No best answer available. Please pick the good answer available or submit your answer. | |
May 23, 2006 03:30:23 | #4 |
| Rahul Shukla |
|
|
RE: What is a pointer?
| pointer : pointer is a derived data type which holds addresses as its value. it points to value at it's address. for ex: int *p; does not mean p type is integer. p can't be int. p is just a pointer variable. the above declaration means p is a pointer to an integer location. *p means value at location p. p means value of p. &p means address of p. |  | | Is this answer useful? Yes | No | | |
|
| |
Go To Top
|