Computer Science, asked by khadarlucky, 11 months ago

declaration of pointer with examples​

Answers

Answered by Gajoh
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