-
-
Notifications
You must be signed in to change notification settings - Fork 9
Address of Operator
IsaacShelton edited this page Mar 21, 2022
·
1 revision
The &
operator is used for obtaining the address of a location in memory.
&my_variable
&my_array[4]
The &
operator also has other uses, mainly being the bitwise-and operator and the function-address operator.