The pointer variables are those variables which used to hold
the address or memory address of another variable. We can assign the memory
address of another variable by using address operator (&).
Pointer variable
can not be add or multiply. It can hold only one memory address at a time.
Sy:
data_type *pointer_variable;
Ex;
int *x, y;
x = &y;
No comments:
Post a Comment