This Question is Answered
What Is A Pointer In C Language?
asked 2 years ago
Can't find what you're looking for?
Ask a Question, Get an Answer ASAP
Pointer in c is nothing but ann address. The pointer indicates the exact address of a variable.
To declare a variable as a pointer you need to put *.eg.int *P this indicates P is a pointer of type integer,value at address.
It also indicates the address of the variable.
* indiacates value at address.
P= &a means value of p is address of variable a.
answered 2 years ago
Ask questions on any topic, get great answers from real people for FREE. Blurtit has hundreds of thousand of members so your sure to get the answer your looking for.