|
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
|