⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠ You can decompress Drawing data with the command palette: ‘Decompress current Excalidraw file’. For more info check in plugin settings under ‘Saving’
Excalidraw Data
Text Elements
064
…
203
204
205
206
207
208
209
Address
*p is pointer which is storing 204 which is address of a.
Computer Memory (RAM - 8 GB)
b = 10
a = 4
*p = &a
*p : points to the value of address
&p : address of p
Remember:
*p = &a → we are defining pointer variable named p which stores address of a.
b = *p → here we “de-referencing” pointer p (*p) to get the value at the address which *p stores.
64