Short note About “Address Operator(&)”
Address Operator(&) :-
The symbol &(ampersand) is an address operator which is used to access the address of a variable and assign it to a pointer to initialize it consider the following example –
int m=15, *mptr;
float x =2.34,*xptr;
mptr = &m;
xptr = &x;
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment