Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

What is pointer in C programming language?

user-image
Question ajoutée par SUMIT GUPTA , TRAINING , NETWORK BULLS PVT LTD
Date de publication: 2014/09/02

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

 

More Questions Like This