declaration of pointer with examples
Answers
Answered by
0
The pointer variable stores the address of a variable. The declaration int *a doesn't mean that a is going to contain an integer value. It means that a is going to contain the address of a variable storing integer value. To access the value of a certain address stored by a pointer variable, * is used.
Similar questions