View Single Post
Old 26-03-08, 05:45 PM   #5 (permalink)
query123
Junior Member
 
Join Date: Apr 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 2 query123 is on a distinguished road
Re: C language - What is a pointer value and address?

pointer is a variable that hold the address of other variable.
it should be declared as
data type *pt_name
eg
int *p;//declare pointer p
p=&a;//address of variable a
v=*p;//v have tha value at address p
query123 is offline   Reply With Quote