You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use an asterisk `*` for declaration and dereferencing. The ampersand `&` is is used when initializing.
55
55
56
56
Every pointer takes 8 bytes no matter the data type.
57
+
58
+
## Reference
59
+
60
+
A reference is an alias given to a variable. Use an ampersand `&` to declared a reference. Referencing is useful for parameter passing in small functions.
0 commit comments