Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
Pointer is a variable which can access the address of another variable
for example
int *p;//p is apointer variable * is denoted by pointer
int i=10;// i is a variable value is10
p=&a;//p is pointer who access the address of value a